mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 10:16:44 +00:00
* build(protocol): make @openclaw/gateway-protocol publishable to npm * chore(mxc): align package version with release train * fix(release): support gateway-only core packages
45 lines
978 B
JSON
45 lines
978 B
JSON
{
|
|
"name": "@openclaw/mxc-sandbox",
|
|
"version": "2026.7.2",
|
|
"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.7.2"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.7.2",
|
|
"bundledDist": false,
|
|
"staticAssets": [
|
|
{
|
|
"source": "./src/mxc-spawn-launcher.mjs",
|
|
"output": "mxc-spawn-launcher.mjs"
|
|
}
|
|
]
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
}
|
|
}
|