{
  "name": "@opensip-cli/datastore",
  "version": "0.8.5",
  "license": "Apache-2.0",
  "description": "SQLite + Drizzle persistence layer for OpenSIP CLI — DataStore interface, backends, factory, schema migrations",
  "keywords": [
    "opensip-cli",
    "static-analysis",
    "code-quality",
    "sqlite",
    "drizzle",
    "persistence"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/opensip-ai/opensip-cli.git",
    "directory": "packages/datastore"
  },
  "homepage": "https://github.com/opensip-ai/opensip-cli",
  "bugs": {
    "url": "https://github.com/opensip-ai/opensip-cli/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./internal": "./dist/internal.js"
  },
  "files": [
    "dist",
    "migrations",
    "LICENSE",
    "NOTICE"
  ],
  "dependencies": {
    "@opentelemetry/api": "^1.9.1",
    "better-sqlite3": "^12.11.1",
    "drizzle-orm": "^0.45.2",
    "@opensip-cli/core": "0.8.5"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^24.13.3",
    "drizzle-kit": "^0.31.10",
    "typescript": "~6.0.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run --passWithNoTests",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "db:generate": "drizzle-kit generate",
    "db:check": "drizzle-kit check"
  }
}