mirror of
https://github.com/whekin/household-bot.git
synced 2026-03-31 13:44:03 +00:00
20 lines
448 B
JSON
20 lines
448 B
JSON
{
|
|
"name": "@household/db",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "bun build src/index.ts --outdir dist --target bun",
|
|
"typecheck": "tsgo --project tsconfig.json --noEmit",
|
|
"test": "bun test --pass-with-no-tests",
|
|
"lint": "oxlint \"src\"",
|
|
"seed": "bun run src/seed.ts"
|
|
},
|
|
"dependencies": {
|
|
"drizzle-orm": "^0.44.5",
|
|
"postgres": "^3.4.7"
|
|
}
|
|
}
|