-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.52 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.52 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
{
"name": "ACLiveFrame",
"description": "适用于ACFUN的开放式直播框架工具",
"version": "2.9.8",
"private": true,
"type": "module",
"author": {
"email": "617564112@qq.com",
"name": "肥群主"
},
"main": "packages/entry-point.mjs",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "npm run build -ws --if-present",
"test:main": "pnpm --filter @acfun/main test",
"postbuild": "electron-builder build --config electron-builder.mjs",
"compile": "npm run build; electron-builder build --config electron-builder.mjs",
"test": "npx --yes @playwright/test test",
"start": "node packages/dev-mode.js",
"typecheck": "pnpm -r run typecheck",
"typecheck:all": "pnpm -r run typecheck",
"create-renderer": "cd packages && npm create vite@latest renderer",
"integrate-renderer": "npm start --workspace @app/integrate-renderer",
"init": "npm run create-renderer && npm run integrate-renderer && npm install",
"docs:api": "pnpm exec apidoc -i docs/apidoc-src -o docs/apidoc"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@npmcli/map-workspaces": "4.0.2",
"@playwright/test": "1.52.0",
"@types/adm-zip": "^0.5.7",
"@types/archiver": "^6.0.3",
"@types/express": "^5.0.3",
"@types/lodash": "^4.17.21",
"@types/node": "22.15.30",
"@types/supertest": "^6.0.3",
"@types/tar": "^6.1.13",
"@types/unzipper": "^0.10.11",
"apidoc": "^0.51.1",
"electron": "^39.0.0",
"electron-builder": "26.0.12",
"electron-devtools-installer": "4.0.0",
"electron-rebuild": "^3.2.9",
"eslint-plugin-vue": "^10.5.1",
"glob": "11.0.2",
"globals": "^16.5.0",
"main": "^1000.0.1",
"supertest": "^7.1.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "7.1.12",
"vite-plugin-electron-renderer": "^0.14.6"
},
"dependencies": {
"archiver": "^7.0.1",
"electron-data": "^2.1.2",
"electron-store": "^8.2.0",
"eslint": "^9.39.0",
"eventsource": "^2.0.2",
"express": "^5.1.0",
"flv.js": "^1.6.2",
"lodash": "^4.17.21",
"query-string": "^9.3.1",
"root": "^3.2.0",
"unzipper": "^0.12.3",
"vitest": "^4.0.6"
},
"optionalDependencies": {
"@app/electron-versions": "workspace:*",
"@app/main": "workspace:*",
"@app/preload": "workspace:*"
},
"pnpm": {
"overrides": {
"@types/node": "22.15.30",
"vite": "7.1.12",
"typescript": "5.9.3",
"electron-store": "8.2.0"
}
}
}