Files
openclaw/extensions/mxc/package.json
2026-08-07 18:44:12 -07:00

45 lines
978 B
JSON

{
"name": "@openclaw/mxc-sandbox",
"version": "2026.8.1",
"description": "OpenClaw MXC sandbox execution plugin for MXC-capable hosts",
"repository": {
"type": "git",
"url": "https://github.com/openclaw/openclaw"
},
"type": "module",
"devDependencies": {
"@openclaw/plugin-sdk": "workspace:*"
},
"dependencies": {
"@microsoft/mxc-sdk": "0.7.0",
"zod": "4.4.3"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"install": {
"npmSpec": "@openclaw/mxc-sandbox",
"defaultChoice": "npm",
"minHostVersion": ">=2026.6.11"
},
"compat": {
"pluginApi": ">=2026.8.1"
},
"build": {
"openclawVersion": "2026.8.1",
"bundledDist": false,
"staticAssets": [
{
"source": "./src/mxc-spawn-launcher.mjs",
"output": "mxc-spawn-launcher.mjs"
}
]
},
"release": {
"publishToClawHub": true,
"publishToNpm": true
}
}
}