-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.04 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
37
38
39
40
41
42
43
44
45
46
{
"name": "esengine",
"private": true,
"type": "module",
"description": "Estella - A fast 2D game engine powered by WebAssembly and ECS",
"license": "Apache-2.0",
"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: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",
"emsdk:setup": "node build-tools/toolchain/setup-emsdk.js",
"asset-meta": "node tools/asset-meta.js",
"migrate-asset-refs": "node tools/migrate-asset-refs.js",
"verify": "pnpm --filter ./sdk exec tsc --noEmit && pnpm --filter @estella/editor exec tsc --noEmit && node tools/api-surface.mjs --check && node tools/check-cycles.mjs && node tools/check-layers.mjs && node tools/check-project-settings.mjs && node tools/check-workflows.mjs && node tools/check-tool-calls.mjs && node tools/check-inspector-door.mjs && node tools/check-dirty-source.mjs && node tools/check-path-sandbox.mjs && node tools/check-key-codes.mjs && node tools/check-comment-style.mjs && node tools/check-cpp-tests.mjs && node tools/check-release-metadata.mjs && node tools/component-reference.mjs --check",
"perf": "node tools/perf-guard.mjs --check",
"scale": "node tools/perf-budget.mjs",
"stress-project": "node tools/stress-project.mjs",
"prepare": "git config core.hooksPath .githooks || true",
"soak": "pnpm --filter ./sdk exec vitest run tests/soak",
"torture": "pnpm --filter ./sdk exec vitest run tests/torture"
},
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"ora": "^8.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"ffmpeg-static"
]
},
"devDependencies": {
"madge": "^8.0.0"
}
}