-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 740 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": "kinema",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/",
"lint:fix": "biome check --fix src/"
},
"dependencies": {
"@dimforge/rapier3d-compat": "^0.19.3",
"@vercel/analytics": "^2.0.1",
"navcat": "0.2.0",
"three": "~0.183.0",
"tone": "^15.1.22"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@playwright/test": "^1.58.2",
"@types/node": "^22.0.0",
"@types/three": "~0.183.0",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.0"
}
}