{
  "name": "pocketbase-zod-schema",
  "version": "1.0.2",
  "description": "PocketBase migration generator using Zod schemas for type-safe database migrations",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "pocketbase",
    "zod",
    "migration",
    "database",
    "typescript",
    "schema",
    "sqlite",
    "orm",
    "type-safe",
    "code-generation"
  ],
  "homepage": "https://github.com/dastron/pocketbase-zod-schema#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dastron/pocketbase-zod-schema.git"
  },
  "bugs": {
    "url": "https://github.com/dastron/pocketbase-zod-schema/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./server": {
      "types": "./dist/server.d.ts",
      "import": "./dist/server.js",
      "require": "./dist/server.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "nodemon",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:property": "vitest run --testNamePattern='Property'",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write ./src",
    "lint": "eslint src --fix",
    "clean": "rm -rf dist",
    "bundle-size": "yarn build && du -sh dist/* | sort -hr",
    "prepublishOnly": "yarn clean && yarn build && yarn test",
    "publish:npm": "npm publish --access public",
    "check-updates": "yarn outdated"
  },
  "bin": {
    "pocketbase-migrate": "./dist/cli/migrate.js"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "author": "dastron <erik.danford@gmail.com>",
  "license": "MIT",
  "sideEffects": false,
  "devDependencies": {
    "@babel/parser": "^7.28.6",
    "@eslint/js": "^9.39.2",
    "@types/node": "^25.0.9",
    "@typescript-eslint/eslint-plugin": "^8.53.0",
    "@typescript-eslint/parser": "^8.53.0",
    "@vitest/coverage-v8": "^4.0.17",
    "diff": "^8.0.3",
    "eslint": "^9.39.2",
    "fast-check": "^4.5.3",
    "nodemon": "^3.1.11",
    "prettier": "^3.8.0",
    "prettier-plugin-organize-imports": "^4.3.0",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.53.0",
    "vitest": "^4.0.17"
  },
  "dependencies": {
    "acorn": "^8.17.0",
    "chalk": "^5.6.2",
    "commander": "^12.1.0",
    "ora": "^8.2.0",
    "pocketbase": "^0.26.6",
    "tsx": "^4.21.0",
    "zod": "^4.3.5"
  }
}
