{
  "name": "@portabletext/schema",
  "version": "2.1.1",
  "description": "Portable Text Schema",
  "keywords": [
    "portabletext",
    "schema"
  ],
  "homepage": "https://www.portabletext.org/",
  "bugs": {
    "url": "https://github.com/portabletext/editor/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/portabletext/editor.git",
    "directory": "packages/schema"
  },
  "license": "MIT",
  "author": "Sanity.io <hello@sanity.io>",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@sanity/pkg-utils": "^10.2.1",
    "@sanity/tsconfig": "^2.0.0",
    "typescript": "5.9.3",
    "vitest": "^4.0.14"
  },
  "engines": {
    "node": ">=20.19 <22 || >=22.12"
  },
  "scripts": {
    "build": "pkg-utils build --strict --check --clean",
    "check:lint": "biome lint .",
    "check:types": "tsc",
    "check:types:watch": "tsc --watch",
    "clean": "del .turbo && del lib && del node_modules",
    "dev": "pkg-utils watch",
    "lint:fix": "biome lint --write .",
    "test:unit": "vitest run",
    "test:unit:watch": "vitest watch"
  }
}