rowboat/apps/cli/package.json
tusharmagar 4310b1d45d First version copilot:
- basic llm call that can perform CRUD actions over dummy workflow json files
2025-11-05 13:09:25 +05:30

28 lines
634 B
JSON

{
"name": "cli",
"version": "1.0.0",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/node": "^24.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@ai-sdk/google": "^2.0.25",
"@ai-sdk/openai": "^2.0.53",
"@modelcontextprotocol/sdk": "^1.20.2",
"ai": "^5.0.78",
"nanoid": "^5.1.6",
"zod": "^4.1.12"
}
}