rowboat/apps/cli/package.json
nocxcloud-oss 4239f9f1ef strengthen repo verification and runtime coverage
Add clearer app docs plus targeted desktop, CLI, web, and worker tests so cross-surface regressions are caught earlier and the repo is easier to navigate.
2026-04-15 19:10:41 +08:00

66 lines
1.8 KiB
JSON

{
"name": "@rowboatlabs/rowboatx",
"version": "0.16.0",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint src test bin",
"typecheck": "tsc --noEmit",
"test": "npm run build && node ./test/run-tests.mjs",
"build": "rm -rf dist && tsc",
"verify": "npm run lint && npm run typecheck && npm test",
"server": "node dist/server.js",
"migrate-agents": "node dist/scripts/migrate-agents.js"
},
"files": [
"dist",
"bin"
],
"bin": {
"rowboatx": "bin/app.js"
},
"keywords": [],
"author": "Rowboat Labs",
"license": "Apache-2.0",
"description": "",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^24.9.1",
"@types/react": "^18.3.12",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"typescript-eslint": "^8.50.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.44",
"@ai-sdk/google": "^2.0.25",
"@ai-sdk/openai": "^2.0.53",
"@ai-sdk/openai-compatible": "^1.0.27",
"@ai-sdk/provider": "^2.0.0",
"@google-cloud/local-auth": "^3.0.1",
"@hono/node-server": "^1.19.6",
"@hono/standard-validator": "^0.1.5",
"@modelcontextprotocol/sdk": "^1.20.2",
"@openrouter/ai-sdk-provider": "^1.2.6",
"ai": "^5.0.102",
"awilix": "^12.0.5",
"eventsource-parser": "^1.1.2",
"google-auth-library": "^10.5.0",
"googleapis": "^169.0.0",
"hono": "^4.10.7",
"hono-openapi": "^1.1.1",
"ink": "^5.1.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"json-schema-to-zod": "^2.6.1",
"nanoid": "^5.1.6",
"node-html-markdown": "^2.0.0",
"ollama-ai-provider-v2": "^1.5.4",
"react": "^18.3.1",
"yaml": "^2.8.2",
"yargs": "^18.0.0",
"zod": "^4.1.12"
}
}