{
  "name": "@monopi/db",
  "version": "0.6.1",
  "description": "Shared SQLite database for monopi extensions with Drizzle ORM, migration support, and schema module registration.",
  "keywords": [
    "database",
    "drizzle",
    "monopi",
    "pi-coding-agent",
    "pi-package",
    "shared",
    "sqlite"
  ],
  "homepage": "https://github.com/ifiokjr/monopi/tree/main/packages/monopi__db",
  "bugs": {
    "url": "https://github.com/ifiokjr/monopi/issues"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ifiokjr/monopi.git",
    "directory": "packages/monopi__db"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "dependencies": {
    "better-sqlite3": "^12.11.1",
    "drizzle-orm": "^0.45.2"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "drizzle-kit": "^0.31.10"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": ">=0.84.1"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "clean": "node -e \"import('node:fs').then(fs => fs.rmSync('dist',{ recursive: true, force: true }))\"",
    "build": "tsdown --config tsdown.config.ts",
    "build:fast": "pnpm clean && tsgo --project tsconfig.json",
    "typecheck": "tsgo --project tsconfig.json --noEmit",
    "dev": "tsgo --build --watch"
  }
}