mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
44 lines
1.0 KiB
JSON
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"
|
|
}
|
|
}
|