-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.8 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.8 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
{
"name": "FFBox",
"version": "5.3.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",
"bun:backend": "bun build ./app/backend/index.cjs --compile --minify --bytecode --outfile ./app/backend/index-bun",
"package": "electron-builder",
"build:everything": "npm run build:frontend && npm run build:backend && npm run package",
"swagger": "node scripts/generate-schemas.js && node scripts/generate-swagger.js"
},
"author": {
"name": "滔滔清风",
"email": "ttqf.tech@qq.com"
},
"homepage": "http://ffbox.ttqf.tech",
"license": "SEE LICENSE IN <LICENSE>",
"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/parse-path": "^7.0.0",
"@types/path-browserify": "^1.0.0",
"@types/ws": "^8.5.5",
"@vitejs/plugin-vue": "^6.0.5",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"electron": "^24",
"electron-builder": "^23.6.0",
"eslint": "^8.29.0",
"less": "^4.1.3",
"pkg": "^5.8.1",
"prettier": "^2.8.1",
"swagger-jsdoc": "^6.2.8",
"ts-json-schema-generator": "^2.9.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"vite": "^8.0.3",
"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",
"axios": "^1.11.0",
"conf": "10.2.0",
"crypto-js": "^4.1.1",
"events": "^3.3.0",
"gsap": "^3.13.0",
"html5parser": "^2.0.2",
"koa": "^2.14.1",
"koa-body": "^6.0.0",
"koa-mount": "^4.0.0",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"parse-path": "^7.0.0",
"path-browserify": "^1.0.1",
"pinia": "^2.0.29",
"utimes": "^5.2.1",
"vue": "^3.4",
"ws": "^8.13.0"
}
}