-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 905 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
{
"name": "template-ts-vite",
"version": "1.1.0",
"description": "Excalibur TypeScript template for Vite",
"main": "index.js",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "npm run build && ex-test -d ./dist -t ./test/test.js"
},
"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",
"devDependencies": {
"excalibur": "0.29.3",
"typescript": "5.6.3",
"vite": "5.4.10"
},
"dependencies": {
"@excaliburjs/testing": "^0.26.0"
}
}