- Updated import paths for task management providers in task-comment, task-create, and task-update tools. - Removed deprecated task-complete and task-pickup tools, replacing them with work-finish and work-start tools for improved task handling. - Enhanced work-finish and work-start tools to streamline task completion and pickup processes, including context-aware detection and auto-scheduling features. - Updated package.json to include build scripts and main entry point. - Modified tsconfig.json to enable output directory, declaration files, and source maps for better TypeScript support.
48 lines
897 B
JSON
48 lines
897 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"
|
|
]
|
|
},
|
|
"main": "./dist/index.js",
|
|
"files": [
|
|
"dist/",
|
|
"roles/",
|
|
"docs/"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"check": "tsc --noEmit",
|
|
"watch": "tsc --noEmit --watch",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8"
|
|
}
|
|
}
|