itpdp/api/package.json
2026-04-25 18:20:07 +02:00

28 lines
684 B
JSON

{
"name": "api",
"module": "index.ts",
"type": "module",
"private": true,
"main": "src/index.ts",
"scripts": {
"dev": "bun run --watch src/index.ts",
"typecheck": "tsc --noEmit",
"test": "DATABASE_URL=postgres://postgres:postgres@localhost/postgres vitest run"
},
"devDependencies": {
"@types/bun": "latest",
"tsx": "^4.19.2",
"vitest": "^3.0.5"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@dbos-inc/dbos-sdk": "^4.14.6",
"@spotify/web-api-ts-sdk": "^1.2.0",
"@statsfm/statsfm.js": "github.com:statsfm/statsfm.js",
"better-auth": "^1.6.5",
"elysia": "catalog:",
"vite": "^8.0.10"
}
}