-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 824 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "alicization-town",
"version": "0.7.0",
"private": true,
"description": "A decentralized multi-agent pixel sandbox world powered by the Model Context Protocol (MCP)",
"main": "server/src/main.js",
"workspaces": ["server", "packages/*"],
"engines": { "node": ">=22.5" },
"scripts": {
"start": "node server/src/main.js",
"start:server": "npm start --workspace=alicization-town-server",
"start:mcp-bridge": "npm start --workspace=alicization-town-bridge",
"build:cli": "npm run build --workspace=alicization-town-cli",
"test": "npm test --workspaces --if-present"
},
"devDependencies": {
"esbuild": "^0.25.0",
"socket.io-client": "^4.8.3"
},
"keywords": ["mcp", "multi-agent", "pixel-art", "sandbox", "ai-agents"],
"author": "ceresOPA",
"license": "AGPL-3.0"
}