crabbox/package.json
Vincent Koc 6c30a7669e
feat: add OpenClaw plugin
Add a native OpenClaw plugin package that exposes Crabbox run, warmup, status, list, and stop tools.
2026-05-01 00:47:16 -07:00

30 lines
591 B
JSON

{
"name": "@openclaw/crabbox-plugin",
"version": "0.1.0",
"description": "OpenClaw plugin for running Crabbox remote testbox workflows",
"license": "MIT",
"type": "module",
"main": "index.js",
"openclaw": {
"extensions": [
"./index.js"
],
"compat": {
"pluginApi": ">=2026.4.25"
}
},
"scripts": {
"check": "node --check index.js && node --test index.test.js",
"test": "node --test index.test.js"
},
"files": [
"index.js",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22.0.0"
}
}