-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.05 KB
/
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
40
41
42
43
44
{
"name": "gunner-3-remake",
"version": "1.1.0",
"description": "Remake of the classic Gunner 3 game",
"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",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/androettop/gunner-3-remake.git"
},
"keywords": [
"excalibur",
"excaliburjs",
"vite",
"game-engine"
],
"author": "Pablo Androetto",
"license": "MIT",
"bugs": {
"url": "https://github.com/androettop/gunner-3-remake.git/issues"
},
"homepage": "https://github.com/androettop/gunner-3-remake.git#readme",
"devDependencies": {
"excalibur": "0.29.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "5.6.3",
"vite": "5.4.10"
},
"dependencies": {
"@excaliburjs/testing": "^0.26.0"
},
"lint-staged": {
"*.{ts,json,js,css,md}": "prettier --write"
}
}