- Introduced ExecutionMode type for project execution modes (parallel, sequential). - Updated SetupOpts to use ExecutionMode instead of string literals. - Enhanced workflow states to include a new "In Review" state with appropriate transitions. - Implemented TestHarness for end-to-end testing, including command interception and workspace setup. - Created TestProvider for in-memory issue tracking during tests. - Refactored project registration and setup tools to utilize ExecutionMode. - Updated various tools to ensure compatibility with new workflow and execution modes. - Added new dependencies: cockatiel for resilience and zod for schema validation.
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "@laurentenhoor/devclaw",
|
|
"version": "1.2.2",
|
|
"description": "Multi-project dev/qa pipeline orchestration for OpenClaw",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"author": "Lauren ten Hoor <laurentenhoor@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/laurentenhoor/devclaw.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/laurentenhoor/devclaw/issues"
|
|
},
|
|
"homepage": "https://github.com/laurentenhoor/devclaw#readme",
|
|
"keywords": [
|
|
"openclaw",
|
|
"openclaw-plugin",
|
|
"dev-pipeline",
|
|
"orchestration",
|
|
"gitlab",
|
|
"github",
|
|
"multi-project"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./dist/index.js"
|
|
]
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/",
|
|
"roles/",
|
|
"docs/",
|
|
"openclaw.plugin.json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"check": "tsc --noEmit",
|
|
"watch": "tsc --noEmit --watch",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.2.3",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"cockatiel": "^3.2.1",
|
|
"yaml": "^2.8.2",
|
|
"zod": "^4.3.6"
|
|
}
|
|
}
|