File size: 1,731 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 | {
"name": "@midday/worker",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"generate-insight": "bun run scripts/generate-test-insight.ts"
},
"dependencies": {
"@ai-sdk/openai": "catalog:",
"@fast-csv/format": "catalog:",
"@hono/node-server": "^1.19.9",
"@midday/accounting": "workspace:*",
"@midday/app-store": "workspace:*",
"@midday/customers": "workspace:*",
"@midday/db": "workspace:*",
"@midday/documents": "workspace:*",
"@midday/email": "workspace:*",
"@midday/engine": "workspace:*",
"@midday/health": "workspace:*",
"@midday/engine-client": "workspace:*",
"@midday/import": "workspace:*",
"@midday/insights": "workspace:*",
"@midday/invoice": "workspace:*",
"@midday/job-client": "workspace:*",
"@midday/jobs": "workspace:*",
"@midday/location": "workspace:*",
"@midday/logger": "workspace:*",
"@midday/notifications": "workspace:*",
"@midday/supabase": "workspace:*",
"@midday/utils": "workspace:*",
"@sentry/bun": "catalog:",
"@types/archiver": "^7.0.0",
"archiver": "^7.0.1",
"bullmq": "catalog:",
"camelcase-keys": "^10.0.2",
"date-fns": "catalog:",
"heic-convert": "catalog:",
"hono": "catalog:",
"node-xlsx": "catalog:",
"papaparse": "catalog:",
"sharp": "catalog:",
"workbench": "workspace:*",
"zod": "catalog:"
},
"devDependencies": {
"@types/bun": "latest",
"@types/heic-convert": "1.2.3",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14"
}
}
|