-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "@phaserjs/create-game",
"version": "1.3.2",
"description": "Create a new Phaser game project from a template",
"main": "main.js",
"bin": {
"create-game": "main.js"
},
"files": ["main.js", "phaser-creator", "scaffolding"],
"scripts": {
"dev": "node esbuild/build.dev.mjs",
"build": "node esbuild/build.prod.mjs"
},
"keywords": ["phaser", "game", "create", "template", "install", "cli"],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.5",
"chokidar": "^4.0.3",
"esbuild": "^0.24.2",
"esbuild-plugin-clean": "^1.0.1"
},
"dependencies": {
"@types/prompts": "^2.4.9",
"adm-zip": "^0.5.16",
"chalk": "^5.4.1",
"fs-extra": "^11.2.0",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"ora": "^8.1.1",
"prompts": "^2.4.2"
}
}