Files
paseo/packages/cli/package.json
2026-04-16 22:10:49 +07:00

43 lines
1.1 KiB
JSON

{
"name": "@getpaseo/cli",
"version": "0.1.59",
"description": "Paseo CLI - control your AI coding agents from the command line",
"type": "module",
"files": [
"bin",
"dist"
],
"publishConfig": {
"access": "public"
},
"bin": {
"paseo": "bin/paseo"
},
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist',{ recursive: true, force: true })\" && tsc -p tsconfig.json --incremental false",
"prepack": "npm run build",
"typecheck": "tsc --noEmit",
"test": "npm run test:local",
"test:local": "tsx tests/run-all.ts",
"test:e2e": "npm run test:local",
"test:e2e:lifecycle": "npx tsx tests/e2e/agent-lifecycle.test.ts"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"@getpaseo/relay": "0.1.59",
"@getpaseo/server": "0.1.59",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"mime-types": "^2.1.35",
"ws": "^8.14.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/mime-types": "^3.0.1",
"@types/ws": "^8.5.8",
"tsx": "^4.6.0",
"typescript": "^5.2.2",
"zx": "^8.8.5"
}
}