-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 970 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 970 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
33
34
35
36
37
38
39
{
"name": "polytwisters",
"license": "MIT",
"version": "0.3.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"export-defs": "tsx scripts/exportDefs.ts",
"export-geometry": "tsx scripts/exportGeometry.ts",
"prepare": "husky install"
},
"dependencies": {
"@types/katex": "^0.16.7",
"@types/three": "^0.175.0",
"katex": "^0.16.10",
"lodash": "^4.17.21",
"three": "^0.175.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.1",
"@types/lodash": "^4.17.16",
"@vitejs/plugin-vue": "^5.2.3",
"prettier": "^3.3.3",
"tsx": "^4.20.6",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.1.1",
"vue-tsc": "^2.1.10"
},
"lint-staged": {
"*.{ts,vue,js,css,md,html}": "prettier --write",
"*.{js,css,md}": "prettier --write"
}
}