-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 991 Bytes
/
package.json
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
{
"name": "template-ts-vite",
"version": "1.2.0",
"description": "Excalibur TypeScript template for Vite",
"main": "src/main.ts",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "npm run build && npx playwright test",
"test:integration-update": "npx playwright test --update-snapshots"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excaliburjs/template-ts-vite.git"
},
"keywords": [
"excalibur",
"excaliburjs",
"vite",
"game-engine"
],
"author": "Erik Onarheim",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/excaliburjs/template-ts-vite/issues"
},
"homepage": "https://github.com/excaliburjs/template-ts-vite#readme",
"dependencies": {
"excalibur": "0.30.3"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"typescript": "5.7.3",
"vite": "6.0.7"
}
}