{ "name": "@stock-bot/web-api", "version": "1.0.0", "description": "REST API service for stock bot web application", "main": "dist/index.js", "type": "module", "scripts": { "dev": "bun --watch src/index.ts", "build": "bun build src/index.ts --outdir dist --target node", "start": "bun dist/index.js", "test": "bun test", "clean": "rm -rf dist" }, "dependencies": { "@stock-bot/config": "*", "@stock-bot/logger": "*", "@stock-bot/mongodb-client": "*", "@stock-bot/postgres-client": "*", "@stock-bot/shutdown": "*", "hono": "^4.0.0" }, "devDependencies": { "typescript": "^5.0.0" } }