-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 848 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 848 Bytes
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
{
"name": "batterycheck",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"admin": "vite --open /admin.html",
"generate-types": "tsx scripts/generate-types.ts",
"compile": "tsx scripts/compile-data.ts",
"prebuild": "npm run generate-types && npm run compile",
"build": "vue-tsc -b && vite build && tsx scripts/generate-pages.ts",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.5.25"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/tsconfig": "^0.9.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"glob": "^13.0.6",
"json-schema-to-typescript": "^15.0.4",
"tsx": "^4.19.4",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vue-router": "^5.0.3",
"vue-tsc": "^3.1.5"
}
}