Files
sim/packages/db/package.json
2026-04-04 16:22:19 -07:00

44 lines
1.0 KiB
JSON

{
"name": "@sim/db",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "Apache-2.0",
"engines": {
"bun": ">=1.2.13",
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./index.ts",
"default": "./index.ts"
},
"./schema": {
"types": "./schema.ts",
"default": "./schema.ts"
}
},
"scripts": {
"db:push": "bunx drizzle-kit push --config=./drizzle.config.ts",
"db:migrate": "bun --env-file=.env run ./scripts/migrate.ts",
"db:studio": "bunx drizzle-kit studio --config=./drizzle.config.ts",
"type-check": "tsc --noEmit",
"lint": "biome check --write --unsafe .",
"lint:check": "biome check .",
"format": "biome format --write .",
"format:check": "biome format ."
},
"dependencies": {
"drizzle-orm": "^0.44.5",
"postgres": "^3.4.5",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@sim/tsconfig": "workspace:*",
"drizzle-kit": "^0.31.4",
"@types/node": "^22.10.5",
"typescript": "^5.7.3"
}
}