{
  "name": "@polotno/schema",
  "version": "0.6.2",
  "description": "Canonical Polotno design format: types, normalize, validate, JSON Schema. Authored in zod, DOM-free.",
  "license": "SEE LICENSE IN LICENSE.md",
  "type": "module",
  "sideEffects": false,
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "import": "./lib/index.js",
      "types": "./lib/index.d.ts"
    },
    "./defaults": {
      "import": "./lib/defaults.js",
      "types": "./lib/defaults.d.ts"
    },
    "./json": {
      "import": "./lib/design.schema.json"
    },
    "./design.schema.json": "./lib/design.schema.json"
  },
  "author": "Anton Lavrenov",
  "homepage": "https://polotno.com",
  "keywords": [
    "polotno",
    "design",
    "schema",
    "json-schema",
    "normalize",
    "validate",
    "zod",
    "standard-schema"
  ],
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "lib",
    "README.md",
    "LICENSE.md"
  ],
  "dependencies": {
    "zod": "^4.6.5"
  },
  "devDependencies": {
    "typescript": "~6.0.3",
    "vitest": "^5.0.1"
  },
  "scripts": {
    "build": "rm -rf lib && tsc && node scripts/generate-schema.mjs && node ../../scripts/check-pack.mjs",
    "build:schema": "node scripts/generate-schema.mjs",
    "typecheck": "tsc --noEmit",
    "test": "vitest run"
  }
}