campfire/background/package.json
2026-01-14 13:11:33 -05:00

24 lines
488 B
JSON

{
"name": "background",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@types/pg": "^8.16.0",
"airtable": "^0.12.2",
"dotenv": "^17.2.3",
"prisma": "^7.2.0"
}
}