-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "lol-ya-tdg",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"format": "biome format src/ tests/",
"format:fix": "biome format --write src/ tests/",
"typecheck": "tsc --noEmit",
"check:sim-boundary": "bash scripts/check-sim-boundary.sh",
"check": "npm run lint && npm run typecheck && npm run check:sim-boundary && npm run test"
},
"dependencies": {
"@dimforge/rapier2d-compat": "^0.19.3",
"pinia": "^3.0.0",
"recast-navigation": "^0.43.1",
"vue": "^3.5.0",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@types/node": "^26.0.1",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/test-utils": "^2.4.11",
"jsdom": "^29.1.1",
"typescript": "^6.0.3",
"vite": "^6.0.0",
"vitest": "^4.1.9"
}
}