phone/package.json
Corey Johnson 24a726b829 Upgrade robot3 to 1.3.0 for improved TypeScript support
- Bundle robot3 1.3.0 locally (not yet published to npm)
- Fix remaining type inference issues with `as any` casts for invoke() events
- Resolves state machine transition type errors

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 14:33:47 -08:00

27 lines
526 B
JSON

{
"name": "tmp",
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
"d": "bun scripts/deploy.ts",
"start": "bun run src/operator.ts"
},
"devDependencies": {
"@types/bun": "1.3.5",
"prettier": "^3.7.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"hono": "^4.11.3",
"openai": "^6.15.0",
"robot3": "./packages/robot3",
"zod": "^4.3.4"
},
"prettier": {
"semi": false,
"printWidth": 100
}
}