-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.51 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
47
{
"name": "unity-ai-control-plane",
"version": "0.1.0",
"private": true,
"description": "Open-source control plane for Unity and Meta XR agents using MCP and an observe-act-verify loop.",
"license": "MIT",
"type": "module",
"keywords": [
"unity",
"mcp",
"ai-agents",
"meta-xr",
"observe-act-verify"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marcosotomac/unity-ai.git"
},
"bugs": {
"url": "https://github.com/marcosotomac/unity-ai/issues"
},
"homepage": "https://github.com/marcosotomac/unity-ai#readme",
"workspaces": [
"packages/core-protocol",
"packages/capability-sdk",
"apps/mcp-server"
],
"scripts": {
"build": "tsc -b",
"schemas:antigravity": "npm run build && node scripts/sync-mcp-tool-schemas.mjs --antigravity",
"schemas:check": "npm run build && node scripts/sync-mcp-tool-schemas.mjs --check",
"schemas:generate": "npm run build && node scripts/sync-mcp-tool-schemas.mjs --write-repo",
"setup:user": "node scripts/setup-user.mjs",
"typecheck": "tsc -b",
"verify:asset-catalog": "npm run build && node scripts/verify-asset-catalog.mjs",
"verify:bridge-retry": "npm run build && node scripts/verify-bridge-retry.mjs",
"verify:unity-package": "node scripts/verify-unity-package.mjs",
"verify:mcp-unity-e2e": "npm run build && node scripts/verify-mcp-unity-e2e.mjs"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^20.19.41",
"typescript": "^5.6.0"
}
}