{
  "name": "@cipherstash/schema",
  "version": "2.2.0",
  "description": "CipherStash schema builder for TypeScript",
  "keywords": [
    "encrypted",
    "protect",
    "schema",
    "builder"
  ],
  "bugs": {
    "url": "https://github.com/cipherstash/protectjs/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cipherstash/protectjs.git"
  },
  "license": "MIT",
  "author": "CipherStash <hello@cipherstash.com>",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "devDependencies": {
    "tsup": "8.4.0",
    "typescript": "5.6.3",
    "vitest": "3.1.3"
  },
  "dependencies": {
    "zod": "^3.24.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "release": "tsup"
  }
}