rowboat/apps/cli/package.json

39 lines
845 B
JSON
Raw Normal View History

2025-10-28 13:17:06 +05:30
{
2025-11-05 13:28:38 +05:30
"name": "@rowboatlabs/rowboatx",
2025-11-05 13:29:12 +05:30
"version": "0.3.0",
2025-10-28 13:17:06 +05:30
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && tsc",
"copilot": "npm run build && node dist/x.js"
2025-10-28 13:17:06 +05:30
},
2025-11-05 13:28:38 +05:30
"files": [
"dist",
"bin"
],
"bin": {
"rowboatx": "bin/app.js"
},
2025-10-28 13:17:06 +05:30
"keywords": [],
2025-11-05 13:28:38 +05:30
"author": "Rowboat Labs",
"license": "MIT",
2025-10-28 13:17:06 +05:30
"description": "",
"devDependencies": {
"@types/node": "^24.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
2025-11-14 09:13:28 +05:30
"@ai-sdk/anthropic": "^2.0.44",
2025-10-28 13:17:06 +05:30
"@ai-sdk/google": "^2.0.25",
"@ai-sdk/openai": "^2.0.53",
"@modelcontextprotocol/sdk": "^1.20.2",
"ai": "^5.0.78",
2025-11-07 11:42:10 +05:30
"json-schema-to-zod": "^2.6.1",
2025-10-28 13:17:06 +05:30
"nanoid": "^5.1.6",
2025-11-15 01:51:22 +05:30
"yargs": "^18.0.0",
2025-10-28 13:17:06 +05:30
"zod": "^4.1.12"
}
}