-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.97 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "zonehub",
"private": false,
"version": "1.0.0",
"license": "AGPL-3.0-only",
"type": "module",
"main": "electron/main/main.cjs",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "npm@10.2.4",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:electron": "vite build --mode electron",
"electron:dev": "node ./scripts/electron-dev.cjs",
"electron:dev:main": "cross-env NODE_ENV=development ELECTRON_DEBUG=true electron ./electron/main/main.cjs",
"electron:prepare-icons": "node ./scripts/generate-electron-icons.cjs",
"electron:build": "npm run build:electron && npm run electron:prepare-icons && electron-builder --publish never",
"electron:rebuild": "electron-rebuild",
"prepare": "husky",
"lint": "eslint .",
"preview": "vite preview",
"install:no-steam": "npm install --ignore-scripts",
"badges:sync-assets": "node ./scripts/sync-badge-assets.cjs"
},
"dependencies": {
"@ffmpeg/core": "^0.12.6",
"@ffmpeg/ffmpeg": "^0.12.6",
"@ffmpeg/util": "^0.12.1",
"@fontsource/zcool-kuaile": "^5.2.8",
"@heroicons/react": "^2.2.0",
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@tanstack/react-query": "^5.90.21",
"@types/gif.js": "^0.2.5",
"bad-words-chinese": "^1.0.2",
"browser-image-compression": "^2.0.2",
"file-saver": "^2.0.5",
"gif.js": "^0.2.0",
"gifenc": "^1.0.3",
"gifuct-js": "^2.1.2",
"html2canvas": "^1.4.1",
"i18next": "^25.4.2",
"i18next-browser-languagedetector": "^8.2.0",
"jszip": "^3.10.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.7.2",
"react-router-dom": "^7.7.1",
"react-share": "^5.2.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/file-saver": "^2.0.7",
"@types/jszip": "^3.4.0",
"@types/node": "^20.19.28",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-rebuild": "^3.2.9",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"png-to-ico": "^2.1.8",
"postcss": "^8.5.6",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4"
},
"build": {
"productName": "ZoneHub",
"publish": null,
"asar": true,
"icon": "build/icon.png",
"afterPack": "./scripts/electron-after-pack.cjs",
"directories": {
"output": "dist"
},
"win": {
"icon": "build/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"files": [
"electron/**/*",
"dist/**/*",
"!steam_appid.txt",
"!**/steam_appid.txt"
]
}
}