Files
devclaw-gitea/package.json
Lauren ten Hoor 4cd95acd20 refactor: remove unused test helpers and related test files
- Deleted `helpers.ts`, `projects.test.ts`, and `scenarios.test.ts` as they are no longer needed.
- Updated `package.json` to remove the test script that referenced the deleted files.
2026-02-10 17:02:44 +08:00

40 lines
752 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"
},
"peerDependencies": {
"openclaw": ">=2026.0.0"
},
"devDependencies": {
"typescript": "^5.8"
}
}