{
  "name": "zod-to-appwrite",
  "version": "1.0.5",
  "description": "Generate Appwrite database collections from Zod schemas",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "scripts": {
    "build": "tsc && tsc -p tsconfig.cjs.json",
    "test": "NODE_OPTIONS='--experimental-vm-modules' jest --config jest.config.js",
    "prepublish": "npm run build",
    "example": "NODE_OPTIONS='--loader ts-node/esm' node examples/basic-usage.ts"
  },
  "peerDependencies": {
    "node-appwrite": "^16.0.0",
    "zod": "^3.25.42"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "dotenv": "^16.5.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.3.4",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3"
  },
  "keywords": [
    "appwrite",
    "zod",
    "schema",
    "database",
    "collection",
    "validation"
  ],
  "author": "Sazzad Tanim <sazzad.tanim@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/sazzadtanim/zod-to-appwrite"
  }
}
