mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
27 lines
558 B
JSON
27 lines
558 B
JSON
{
|
|
"name": "@paseo/cli",
|
|
"version": "0.1.0",
|
|
"description": "Paseo CLI - control your AI coding agents from the command line",
|
|
"type": "module",
|
|
"bin": {
|
|
"paseo": "./bin/paseo"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test:e2e": "npx zx tests/run-all.ts"
|
|
},
|
|
"dependencies": {
|
|
"@paseo/server": "*",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.0.0",
|
|
"ws": "^8.14.2",
|
|
"yaml": "^2.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ws": "^8.5.8",
|
|
"tsx": "^4.6.0",
|
|
"typescript": "^5.2.2",
|
|
"zx": "^8.8.5"
|
|
}
|
|
}
|