{
  "name": "@airisos/db",
  "version": "2026.324.0-canary.0",
  "license": "MIT",
  "homepage": "https://github.com/amitvalecha7/AirisOS",
  "bugs": {
    "url": "https://github.com/amitvalecha7/AirisOS/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/amitvalecha7/AirisOS",
    "directory": "packages/db"
  },
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./*": {
      "types": "./dist/*.d.ts",
      "import": "./dist/*.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@airisos/shared": "2026.324.0-canary.0",
    "drizzle-orm": "^0.38.4",
    "embedded-postgres": "^18.1.0-beta.16",
    "postgres": "^3.4.5"
  },
  "devDependencies": {
    "@types/node": "^24.6.0",
    "drizzle-kit": "^0.31.9",
    "tsx": "^4.19.2",
    "typescript": "^5.7.3",
    "vitest": "^3.0.5"
  },
  "optionalDependencies": {
    "@embedded-postgres/windows-x64": "18.3.0-beta.16"
  },
  "scripts": {
    "build": "tsc && cp -r src/migrations dist/migrations",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "generate": "tsc -p tsconfig.json && drizzle-kit generate",
    "migrate": "tsx src/migrate.ts",
    "seed": "tsx src/seed.ts"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts"
}