Files
droidclaw/package.json
Sanju Sivalingam bc014fd587 feat: scaffold Hono server with auth and health check
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 14:07:19 +05:30

28 lines
763 B
JSON

{
"name": "droidclaw",
"workspaces": ["packages/*", "server"],
"version": "1.0.0",
"description": "AI agent that takes control of your Android phone — give it a goal, it figures out the taps",
"type": "module",
"scripts": {
"start": "bun run src/kernel.ts",
"build": "bun build src/kernel.ts --outdir dist --target bun",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.700.0",
"@openrouter/ai-sdk-provider": "^2.1.1",
"ai": "^6.0.72",
"fast-xml-parser": "^4.5.0",
"js-yaml": "^4.1.1",
"openai": "^4.73.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"@types/js-yaml": "^4.0.9",
"typescript": "^5.6.0"
}
}