-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 KB
/
package.json
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
{
"name": "knife4j-swagger",
"version": "1.0.1",
"description": "",
"author": "Mr·Ding",
"keywords": [],
"license": "ISC",
"type": "commonjs",
"scripts": {
"start": "nodemon src/main.js",
"build": "rollup --config",
"package": "pkg . --output ./dist/knife4j-swagger.exe --compress Brotli --debug",
"compress": "upx --best ./dist/knife4j-swagger.exe -o compress.exe"
},
"bin": "dist/main.js",
"pkg": {
"scripts": [
"*.js"
],
"assets": [
"dist/public"
],
"targets": [
"node14-win-x64"
],
"outputPath": "./dist"
},
"dependencies": {
"express": "^4.21.1",
"http-proxy-middleware": "^3.0.3",
"node-knife4j": "^1.0.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^6.1.0",
"nodemon": "^2.0.16",
"pkg": "5.3.2",
"rollup": "^4.24.2",
"rollup-plugin-copy": "^3.5.0",
"upx": "^1.0.6"
}
}