{
  "name": "@sanity/blueprints",
  "version": "0.18.0",
  "description": "Helper methods and type definitions for Sanity Blueprints",
  "keywords": [
    "sanity",
    "blueprints",
    "types"
  ],
  "homepage": "https://github.com/sanity-io/blueprints-node#readme",
  "bugs": {
    "url": "https://github.com/sanity-io/blueprints-node/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/sanity-io/blueprints-node.git"
  },
  "license": "MIT",
  "author": "Sanity.io <hello@sanity.io>",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "dist/index.js",
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "rimraf dist && tsc",
    "coverage": "vitest --coverage",
    "docs:typedoc": "typedoc --options typedoc.json",
    "docs:watch": "npm run docs:typedoc && open ./docs/html/index.html && npm run docs:typedoc -- --watch",
    "lint": "biome check .",
    "lint:write": "biome check --write .",
    "posttest": "npm run lint",
    "prepare": "npm run build",
    "pretest": "npm run typecheck",
    "test": "npm run test:unit && npm run test:integration",
    "test:integration": "cd test/integration && npm install && npm run typecheck && npm run test",
    "test:unit": "vitest run --typecheck --reporter=verbose",
    "typecheck": "tsc --noEmit --project tsconfig.test.json"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.11",
    "@types/node": "^20",
    "@vitest/coverage-v8": "^4.1.4",
    "rimraf": "^6.1.3",
    "typedoc": "^0.28.18",
    "typescript": "^5.9.3",
    "vitest": "4.1.4"
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  }
}
