mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Knip-driven cleanup across all workspaces: Removed (verified zero imports): - root: @anthropic-ai/claude-agent-sdk, @modelcontextprotocol/sdk, expo, react, react-native, react-dom (duplicates of workspace deps) - server: @ai-sdk/openai, @deepgram/sdk, express-basic-auth, fast-uri, mnemonic-id, tiny-invariant, playwright - app: @expo/vector-icons, @getpaseo/server, @react-navigation/bottom-tabs, @react-navigation/elements, base64-js, react-native-css, expo-av, expo-font, expo-symbols, expo-web-browser, react-native-permissions, react-native-popover-view, react-native-securerandom - cli: @getpaseo/relay - desktop: @getpaseo/cli - relay: @cloudflare/workers-types - website: tailwindcss (provided by @tailwindcss/vite) Declared (previously hoisted, now explicit): - root: @types/ws, playwright, ws (used by scripts/) - server: @mariozechner/pi-ai, @mariozechner/pi-agent-core - app: expo-asset, qrcode, @types/qrcode, tiny-invariant, @xterm/headless, dotenv, jsdom - cli: vitest - desktop: vitest Also removes the stray `/app.json` (obsolete, overridden by packages/app/app.config.js).
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@getpaseo/cli",
|
|
"version": "0.1.62",
|
|
"description": "Paseo CLI - control your AI coding agents from the command line",
|
|
"bin": {
|
|
"paseo": "bin/paseo"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"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/server": "0.1.62",
|
|
"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",
|
|
"vitest": "^3.2.4",
|
|
"zx": "^8.8.5"
|
|
}
|
|
}
|