-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 969 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 969 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
40
{
"name": "kami",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"fmt": "prettier --write .",
"tauri": "tauri"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@tauri-apps/cli": "^2",
"eslint": "^9.17.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.18.0",
"viewportsegments-polyfill": "^1.0.4",
"vite": "^7.2.4"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"gl-matrix": "^3.4.4",
"polygon-clipping": "^0.15.7"
},
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild"
]
}
}