-
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) · 997 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 997 Bytes
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": "top-down-survival-shooter",
"version": "2.0.0",
"description": "A top-down survival shooter game built with Phaser.js",
"main": "src/game.js",
"scripts": {
"start": "npx serve . -p 8000",
"dev": "npx live-server --port=8000 --open=/src/",
"build": "rm -rf dist && mkdir -p dist && cp -r src/* dist/ && cp -r assets dist/",
"serve:dist": "npx serve dist -p 8001",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"keywords": [
"game",
"phaser",
"phaser3",
"shooter",
"survival",
"html5"
],
"author": "Alex Wang",
"license": "MIT",
"dependencies": {
"phaser": "^3.80.1"
},
"devDependencies": {
"serve": "^14.2.1",
"live-server": "^1.2.2",
"vitest": "^1.0.0",
"@vitest/ui": "^1.0.0",
"jsdom": "^23.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}