Files
dragonsstash/worker/package.json
adminandClaude Opus 4.8 8b443620c8 test(worker): add vitest harness
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-23 11:18:57 +02:00

32 lines
685 B
JSON

{
"name": "dragonsstash-worker",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"pg": "^8.18.0",
"pino": "^9.6.0",
"prebuilt-tdlib": "^0.1008064.0",
"tdl": "^8.1.0",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/yauzl": "^2.10.3",
"prisma": "^7.4.0",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^3.2.4"
}
}