-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.96 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
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
{
"name": "@jason12306/intranet-file-transfer-assistant",
"private": true,
"version": "1.0.0",
"main": "output/dist/main/main.js",
"author": "jason12306",
"description": "intranet file transfer assistant",
"scripts": {
"dev": "node scripts/load-config.mjs && npm run build:main:dev && node scripts/dev.mjs",
"build": "node scripts/load-config.mjs && npm run build:main:prod && npm run build:renderer && npm run build:electron",
"run:main": "tsx src/main/main.ts",
"run:renderer": "vite --host",
"build:renderer": "vite build",
"build:main:dev": "cross-env NODE_ENV=development node scripts/build-main.mjs",
"build:main:prod": "cross-env NODE_ENV=production node scripts/build-main.mjs",
"build:electron": "electron-builder"
},
"dependencies": {
"@koa/bodyparser": "^5.1.1",
"@koa/cors": "^5.0.0",
"@koa/multer": "^3.0.2",
"@koa/router": "^12.0.1",
"@types/ws": "^8.5.13",
"ant-design-vue": "4.x",
"axios": "^1.7.4",
"ip": "^2.0.1",
"koa": "^2.15.3",
"koa-proxies": "^0.12.4",
"koa-static": "^5.0.0",
"multer": "1.4.5-lts.1",
"normalize.css": "^8.0.1",
"pinia": "^2.0.17",
"portfinder": "^1.0.32",
"vue": "^3.2.37",
"vue-router": "4",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ip": "^1.1.3",
"@types/ipp": "^2.0.5",
"@types/koa": "^2.15.0",
"@types/koa-static": "^4.0.4",
"@types/koa__cors": "^5.0.0",
"@types/koa__multer": "^2.0.7",
"@types/koa__router": "^12.0.4",
"@types/multer": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vitejs/plugin-vue": "^3.0.3",
"consola": "^3.2.3",
"cross-env": "^7.0.3",
"electron": "^19.1.9",
"electron-builder": "^23.1.0",
"esbuild": "^0.14.50",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.3.0",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"tsx": "^4.17.0",
"typescript": "^4.6.4",
"unplugin-vue-components": "^0.27.4",
"vite": "3.0.7",
"vue-tsc": "^0.38.4"
},
"build": {
"appId": "jason",
"icon": "static/icon_512x512.png",
"productName": "IntranetFileTransferAssistant",
"extraResources": [
{
"from": "static/",
"to": "static/"
}
],
"mac": {
"category": "public.app-category.productivity",
"artifactName": "${productName}-macOS-setup-${version}.${ext}"
},
"win": {
"target": "nsis",
"artifactName": "${productName}-windows-setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"copyright": "Copyright © 2024 jason12306",
"files": [
"output"
],
"publish": [
{
"provider": "generic",
"url": "https://github.com/Jason12306"
}
]
}
}