cookbook/sdk/coding-agent-cli/package.json
Peter Steinberger 66a698207f
Some checks failed
Check / Cookbook and examples (push) Has been cancelled
chore: update TypeScript tooling
2026-05-04 01:54:17 +01:00

26 lines
591 B
JSON

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