-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "kerbaldesk",
"private": true,
"license": "GPL-3.0-only",
"version": "1.2.0",
"description": "Tableau blanc d'ingénierie pour Kerbal Space Program : croquis au stylet, calculs de delta-V, TWR, temps de combustion et comparaison de moteurs.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"icons": "node scripts/generate-icons.mjs",
"apk": "npm run build && cap sync android && cd android && ./gradlew assembleDebug"
},
"dependencies": {
"@capacitor/android": "^8.5.0",
"@capacitor/core": "^8.5.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zustand": "^5.0.14"
},
"devDependencies": {
"@capacitor/cli": "^8.5.0",
"@types/node": "^26.2.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.5",
"typescript": "~5.9.2",
"vite": "^8.2.1",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10"
}
}