Files
devclaw-gitea/package.json
2026-02-10 15:48:16 +08:00

41 lines
800 B
JSON

{
"name": "@openclaw/devclaw",
"version": "0.1.0",
"description": "Multi-project dev/qa pipeline orchestration for OpenClaw",
"type": "module",
"license": "MIT",
"author": "laurentenhoor",
"repository": {
"type": "git",
"url": "https://github.com/laurentenhoor/devclaw.git"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"dev-pipeline",
"orchestration",
"gitlab",
"github",
"multi-project"
],
"engines": {
"node": ">=20"
},
"openclaw": {
"extensions": [
"./index.ts"
]
},
"scripts": {
"check": "tsc --noEmit",
"watch": "tsc --noEmit --watch",
"test": "npx tsx --test test/**/*.test.ts"
},
"peerDependencies": {
"openclaw": ">=2026.0.0"
},
"devDependencies": {
"typescript": "^5.8"
}
}