File size: 2,527 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | {
"name": "@midday/api",
"scripts": {
"dev": "TZ=UTC PORT=3003 bun run --hot src/index.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test": "find src -name '*.test.ts' -o -name '*.spec.ts' | grep -q . && bun test --exit src || echo 'No tests yet'"
},
"exports": {
"./trpc/routers/_app": "./src/trpc/routers/_app.ts",
"./ai/types": "./src/ai/types.ts"
},
"dependencies": {
"@ai-sdk-tools/agents": "^1.2.0",
"@ai-sdk-tools/artifacts": "^1.2.0",
"@ai-sdk-tools/cache": "^1.2.0",
"@ai-sdk-tools/memory": "^1.2.0",
"@ai-sdk/openai": "catalog:",
"@ai-sdk/react": "catalog:",
"@date-fns/tz": "catalog:",
"@hono/mcp": "^0.2.3",
"@hono/trpc-server": "^0.4.2",
"@hono/zod-openapi": "1.2.2",
"@hono/zod-validator": "^0.7.6",
"@midday/accounting": "workspace:*",
"@midday/app-store": "workspace:*",
"@midday/cache": "workspace:*",
"@midday/categories": "workspace:*",
"@midday/db": "workspace:*",
"@midday/documents": "workspace:*",
"@midday/encryption": "workspace:*",
"@midday/engine": "workspace:*",
"@midday/engine-client": "workspace:*",
"@midday/events": "workspace:*",
"@midday/health": "workspace:*",
"@midday/import": "workspace:*",
"@midday/inbox": "workspace:*",
"@midday/insights": "workspace:*",
"@midday/invoice": "workspace:*",
"@midday/job-client": "workspace:*",
"@midday/jobs": "workspace:*",
"@midday/location": "workspace:*",
"@midday/logger": "workspace:*",
"@midday/notifications": "workspace:*",
"@midday/plans": "workspace:*",
"@midday/supabase": "workspace:*",
"@midday/utils": "workspace:*",
"@modelcontextprotocol/sdk": "^1.0.0",
"@polar-sh/sdk": "^0.42.1",
"@scalar/hono-api-reference": "^0.9.26",
"@sentry/bun": "catalog:",
"@sindresorhus/slugify": "catalog:",
"@trigger.dev/sdk": "catalog:",
"@trpc/server": "^11.10.0",
"ai": "catalog:",
"camelcase-keys": "catalog:",
"date-fns": "catalog:",
"hono": "catalog:",
"hono-rate-limiter": "0.4.2",
"jose": "catalog:",
"nanoid": "catalog:",
"parse-duration": "^2.1.4",
"pino": "catalog:",
"resend": "catalog:",
"snakecase-keys": "^9.0.2",
"stripe": "^20.1.0",
"superjson": "^2.2.6",
"uuid": "catalog:",
"zod": "catalog:",
"zod-openapi": "^5.4.5"
},
"devDependencies": {
"@types/bun": "latest"
}
}
|