-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "tanium-game-jam-2025",
"version": "0.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"lint": "biome check",
"format": "biome check --write",
"serve": "vite preview",
"prod": "npm run build && npm run serve",
"tauri": "tauri",
"test": "npm run build && npx playwright test",
"test:integration-update": "npx playwright test --update-snapshots"
},
"repository": {},
"keywords": [
"excalibur",
"excaliburjs",
"vite",
"game-engine"
],
"author": "",
"license": "",
"bugs": {},
"homepage": "",
"dependencies": {
"@excaliburjs/plugin-tiled": "0.31.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"excalibur": "0.32.0-alpha.1600"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@fastify/pre-commit": "2.2.1",
"@playwright/test": "^1.56.1",
"@tauri-apps/cli": "^2",
"@types/node": "^24.10.1",
"typescript": "5.9.3",
"vite": "7.3.0"
},
"overrides": {
"@excaliburjs/plugin-tiled": {
"excalibur": "0.32.0-alpha.1600"
}
},
"pre-commit": [
"lint",
"build"
]
}