-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.47 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@bryntum/pdf-export-server",
"version": "2.4.0",
"description": "Standalone PDF export server",
"keywords": [
"bryntum",
"pdf",
"png",
"export",
"server"
],
"homepage": "https://github.com/bryntum/pdf-export-server",
"bugs": {
"url": "https://github.com/bryntum/pdf-export-server/issues"
},
"license": "MIT",
"author": {
"name": "Bryntum",
"url": "https://bryntum.com",
"email": "info@bryntum.com"
},
"bin": {
"pdf-export-server": "./bin/pdf-export-server"
},
"repository": {
"type": "git",
"url": "github:bryntum/pdf-export-server"
},
"scripts": {
"start": "node ./src/server.js",
"test": "jest",
"measure": "node ./src/utils/measure-export-time.js",
"build": "node ./build.js",
"build:win": "node ./build.js --platform=windows",
"build:linux": "node ./build.js --platform=linux",
"build:macos": "node ./build.js --platform=macos"
},
"dependencies": {
"@types/express": "~5.0.0",
"body-parser": "~1.20.3",
"command-line-args": "~6.0.1",
"command-line-usage": "~7.0.3",
"express": "~4.22.1",
"express-request-id": "~3.0.0",
"join-images": "~1.1.5",
"memory-streams": "~0.1.3",
"mkdirp": "~0.5.6",
"muhammara": "~6.0.4",
"nanoid": "~3.3.11",
"puppeteer": "~24.36.1",
"serve-static": "~1.16.2",
"winston": "~3.2.1",
"winston-daily-rotate-file": "~4.4.1",
"ws": "~8.19.0"
},
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"@yao-pkg/pkg": "~6.6.0",
"jest": "~30.2.0",
"move-file": "~1.0.0",
"recursive-copy": "^2.0.14",
"rimraf": "~2.6.2"
},
"overrides": {
"tar": "7.5.11",
"glob": "13.0.6",
"@isaacs/brace-expansion": "5.0.1",
"minimatch": "10.2.3",
"picomatch": "4.0.4",
"anymatch": {
"picomatch": "2.3.2"
},
"micromatch": {
"picomatch": "2.3.2"
}
},
"engines": {
"node": ">=20"
},
"jest": {
"testMatch": [
"<rootDir>/__tests__/**/*.test.js"
],
"setupFiles": [
"<rootDir>/__tests__/jest.setup.js"
],
"globalSetup": "<rootDir>/__tests__/globalSetup.js",
"globalTeardown": "<rootDir>/__tests__/globalTeardown.js",
"transformIgnorePatterns": [
"node_modules/(?!(express-request-id|nanoid|command-line-args|command-line-usage)/)"
]
},
"pkg": {
"assets": [
"node_modules/muhammara/binding/muhammara.node"
],
"ignore": [
"**/*.c",
"**/*.cpp",
"**/*.h"
]
}
}