-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.21 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
{
"name": "galcode",
"version": "0.1.0",
"private": true,
"description": "A web-first visual novel interface for configurable API heroines.",
"main": "electron/main.cjs",
"scripts": {
"dev": "npm run dev:web",
"dev:web": "vite --host 127.0.0.1",
"dev:desktop": "concurrently -k \"npm:dev:web\" \"npm:dev:electron\"",
"dev:electron": "wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .",
"start:desktop": "npm run build && electron .",
"doctor": "npm run build && tsx scripts/doctor.ts",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --host 127.0.0.1",
"test:runtime": "node scripts/runtime-test.cjs",
"test:smoke": "tsx scripts/smoke-test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vitejs/plugin-react": "^5.1.1",
"electron": "^41.2.1",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"typescript": "^5.9.3",
"tsx": "^4.21.0",
"vite": "^8.0.16",
"wait-on": "^9.0.3"
}
}