-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 978 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 978 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
{
"name": "esengine",
"version": "0.3.0",
"private": true,
"type": "module",
"description": "Estella - A fast 2D game engine powered by WebAssembly and ECS",
"scripts": {
"build": "node build-tools/cli.js build",
"build:web": "node build-tools/cli.js build -t web",
"build:wechat": "node build-tools/cli.js build -t wechat",
"build:playable": "node build-tools/cli.js build -t playable",
"build:sdk": "node build-tools/cli.js sdk",
"build:all": "node build-tools/cli.js build -t all",
"dev": "node build-tools/cli.js watch",
"clean": "node build-tools/cli.js clean -a",
"eht": "node build-tools/cli.js eht",
"sync": "node build-tools/cli.js sync",
"asset-meta": "node tools/asset-meta.js",
"migrate-asset-refs": "node tools/migrate-asset-refs.js"
},
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"ora": "^8.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}