Add a docs check that reads the published CLI command list and verifies each top-level command has a command page plus README index entry. Reorder the command index to match CLI help order and note the contributor credit in the changelog. Co-authored-by: stainlu <stainlu@newtype-ai.org>
32 lines
783 B
JSON
32 lines
783 B
JSON
{
|
|
"name": "@openclaw/crabbox-plugin",
|
|
"version": "0.3.1",
|
|
"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",
|
|
"docs:check": "node scripts/check-command-docs.mjs && node scripts/check-docs-links.mjs && node scripts/build-docs-site.mjs",
|
|
"live:auth": "CRABBOX_LIVE=1 scripts/live-auth-smoke.sh",
|
|
"test": "node --test index.test.js"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"openclaw.plugin.json",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"engines": {
|
|
"node": ">=22.0.0"
|
|
}
|
|
}
|