-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.47 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.47 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
{
"name": "membrane",
"version": "0.1.0",
"description": "The Runtime Layer for AI-Native Games",
"packageManager": "pnpm@10.33.2",
"type": "module",
"main": "dist/membrane.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=dist/membrane.js --format=esm --platform=neutral --target=es2020",
"build:wx-smoke": "esbuild src/wx-smoke-bootstrap.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es2020",
"build:wx-runtime": "esbuild src/wx-smoke-runtime.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es6",
"build:wx-webgl": "esbuild src/wx-smoke-webgl.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es6",
"build:wx-engine": "esbuild src/wx-smoke-engine.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es6",
"build:wx-scene": "esbuild src/wx-smoke-scene.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es6",
"build:wx-sprite": "esbuild src/wx-smoke-sprite.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es6",
"build:wx-audio": "esbuild src/wx-smoke-audio.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es6",
"build:wx-ui": "esbuild src/wx-smoke-ui.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es6",
"build:wx-mahjong": "esbuild src/wx-mahjong.cts --bundle --outfile=wx-project/dist/index.js --format=cjs --platform=neutral --target=es6",
"build:compile-fixture": "npx tsx tools/compile-fixture.ts",
"audit:scene": "npx tsx tools/scene-audit.ts",
"audit:scene:fix": "npx tsx tools/scene-audit.ts --fix",
"mcp": "npx tsx tools/mcp/index.ts",
"mcp:demo": "npx tsx tools/mcp/index.ts --project ./tests/fixtures/mcp-demo",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"smoke:local": "powershell -ExecutionPolicy Bypass -File tools/wx-smoke/Invoke-LocalSmoke.ps1",
"smoke:wx:local": "corepack pnpm build:wx-smoke && powershell -ExecutionPolicy Bypass -File tools/wx-smoke/Invoke-LocalSmoke.ps1"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"esbuild": "^0.25.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0",
"zod": "^4.3.6"
},
"license": "MIT",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}