-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.49 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
{
"name": "webgal-apk-build-tool",
"version": "1.1.0",
"description": "WebGAL APK Build Tool | WebGAL APK 构建工具",
"main": "./out/main/index.js",
"author": "OpenWebGAL (https://github.com/OpenWebGAL)",
"homepage": "https://github.com/OpenWebGAL/webgal-apk-build-tool",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win --dir",
"build:mac": "electron-vite build && electron-builder --mac --dir",
"build:linux": "electron-vite build && electron-builder --linux --dir",
"build:cli": "bun build src/lib/cli.ts --compile --outfile dist/cli/webgal-apk-build-tool",
"download-lib": "tsx download-lib.ts",
"download-lib:dev": "tsx download-lib.ts --dev",
"download-lib:win": "tsx download-lib.ts --win",
"download-lib:mac": "tsx download-lib.ts --mac",
"download-lib:linux": "tsx download-lib.ts --linux",
"download-lib:cli": "tsx download-lib.ts --cli"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@fluentui/react-components": "^9.64.0",
"@fluentui/react-icons": "^2.0.302",
"@types/lodash": "^4.17.17",
"@types/node": "^22.14.1",
"@types/react": "18.3.22",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "^4.3.4",
"bun": "^1.2.14",
"electron": "36.3.1",
"electron-builder": "26.0.15",
"electron-vite": "^3.1.0",
"eslint": "^9.24.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"prettier": "^3.5.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"swr": "^2.3.3",
"tar": "^7.4.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"unplugin-info": "^1.2.2",
"vite": "^6.2.6"
}
}