-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 770 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 770 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
{
"name": "blockout",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "tsc && biome check ."
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@types/three": "^0.180.0",
"@vitest/ui": "^3.2.4",
"happy-dom": "^20.3.7",
"typescript": "~5.9.3",
"vite": "^7.1.7",
"vitest": "^3.2.4"
},
"dependencies": {
"three": "^0.180.0"
}
}