forked from ttqftech/FFBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.27 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
{
"name": "FFBox",
"version": "4.2.0-alpha",
"description": "",
"main": "app/main/index.cjs",
"scripts": {
"vite:backend (不使用)": "vite build --config ./config/vite.backend.ts",
"webpack:backend (不使用)": "webpack --config ./config/webpack.backend.js --stats-error-details",
"vite:main (不使用)": "vite build --config ./config/vite.main.ts",
"vite:renderer (不使用)": "vite build --config ./config/vite.renderer.ts",
"vite:preload (不使用)": "vite build --config ./config/vite.preload.ts",
"dev:frontend": "node scripts/dev-frontend.mjs",
"build (无用)": "node scripts/build",
"build:frontend": "node scripts/build-frontend.mjs",
"build:backend": "node scripts/build-backend.mjs",
"pkg:backend:win": "pkg --config ./config/pkg.win.config.json ./app/backend/index.cjs",
"pkg:backend:mac": "pkg --config ./config/pkg.mac.config.json ./app/backend/index.cjs",
"pkg:backend:linux": "pkg --config ./config/pkg.linux.config.json ./app/backend/index.cjs",
"package": "electron-builder",
"build:everything": "npm run build:frontend && npm run build:backend && npm run package"
},
"author": {
"name": "滔滔清风",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/koa": "^2.13.5",
"@types/koa-mount": "^4.0.2",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/node": "^18.11.13",
"@types/path-browserify": "^1.0.0",
"@types/ws": "^8.5.5",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"electron": "^24",
"electron-builder": "^23.6.0",
"eslint": "^8.29.0",
"less": "^4.1.3",
"prettier": "^2.8.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vite-plugin-vue-type-imports": "^0.2.4",
"vite-svg-loader": "^4.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@khanacademy/simple-markdown": "^0.11.2",
"crypto-js": "^4.1.1",
"events": "^3.3.0",
"koa": "^2.14.1",
"koa-body": "^6.0.0",
"koa-mount": "^4.0.0",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"path-browserify": "^1.0.1",
"pinia": "^2.0.29",
"vue": "^3.4",
"ws": "^8.13.0"
}
}