{
  "name": "@stonecrop/schema",
  "version": "0.33.0",
  "description": "Stonecrop schema definitions and validation tooling",
  "keywords": [
    "doctype",
    "schema",
    "stonecrop",
    "validation"
  ],
  "homepage": "https://github.com/agritheory/stonecrop#readme",
  "bugs": {
    "url": "https://github.com/agritheory/stonecrop/issues"
  },
  "author": {
    "name": "Tyler Matteson",
    "email": "tyler@agritheory.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/agritheory/stonecrop",
    "directory": "schema"
  },
  "bin": {
    "stonecrop-schema": "./dist/cli.js"
  },
  "files": [
    "dist",
    "!dist/src"
  ],
  "type": "module",
  "sideEffects": false,
  "types": "./dist/schema.d.ts",
  "exports": {
    ".": {
      "types": "./dist/schema.d.ts",
      "import": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "graphql": "^16.14.0",
    "pluralize": "^8.0.0",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@microsoft/api-extractor": "^7.58.7",
    "@types/node": "^24.12.4",
    "@types/pluralize": "^0.0.33",
    "@vitest/coverage-istanbul": "^4.1.5",
    "jsdom": "^29.1.1",
    "oxlint": "1.67.0",
    "oxlint-tsgolint": "0.23.0",
    "typescript": "^6.0.3",
    "vite": "^8.2.2",
    "vitest": "^4.1.5"
  },
  "engines": {
    "node": ">=24.0.0"
  },
  "scripts": {
    "dev": "vite build --watch",
    "docs": "bash ../tools/scripts/run-docs.sh schema",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "preview": "vite preview",
    "test": "vitest run --coverage.enabled false",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui",
    "test:watch": "vitest watch"
  }
}