cookbook/sdk/coding-agent-cli/package.json
2026-04-29 22:36:12 +01:00

26 lines
590 B
JSON

{
"name": "@openclaw/cookbook-coding-agent-cli",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.23.0",
"bin": {
"openclaw-agent": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "pnpm typecheck && pnpm build",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@openclaw/sdk": "workspace:*"
},
"devDependencies": {
"@types/node": "^24.12.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}