-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.96 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
{
"name": "neon-vanguard-sector-zero",
"productName": "Neon Vanguard: Sector Zero",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron/main.cjs",
"homepage": "./",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"generate-audio": "tsx scripts/generatePlaceholderAudio.ts",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder",
"electron:build:win": "npm run build && electron-builder --win"
},
"dependencies": {
"framer-motion": "^12.23.25",
"i18next": "^25.7.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.4.0",
"recharts": "^3.5.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.22",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.6",
"electron-builder": "^26.0.12",
"electron-is-dev": "^3.0.1",
"jsdom": "^27.2.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"tsx": "^4.19.2",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.0.15",
"wait-on": "^9.0.3"
},
"build": {
"appId": "com.neonvanguard.sectorzero",
"productName": "Neon Vanguard: Sector Zero",
"asar": false,
"directories": {
"buildResources": "public",
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"extraMetadata": {
"main": "electron/main.cjs"
},
"win": {
"target": [
{
"target": "dir",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
}
}
}