{
  "name": "@sanity/runtime-cli",
  "description": "Sanity's Runtime CLI for Blueprints and Functions",
  "version": "14.4.0",
  "author": "Sanity Runtime Team",
  "type": "module",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sanity-io/runtime-cli.git"
  },
  "bugs": "https://github.com/sanity-io/runtime-cli/issues",
  "homepage": "https://github.com/sanity-io/runtime-cli",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./actions/blueprints": {
      "types": "./dist/actions/blueprints/index.d.ts",
      "import": "./dist/actions/blueprints/index.js",
      "require": "./dist/actions/blueprints/index.js"
    },
    "./actions/functions": {
      "types": "./dist/actions/functions/index.d.ts",
      "import": "./dist/actions/functions/index.js",
      "require": "./dist/actions/functions/index.js"
    },
    "./actions/sanity": {
      "types": "./dist/actions/sanity/index.d.ts",
      "import": "./dist/actions/sanity/index.js",
      "require": "./dist/actions/sanity/index.js"
    },
    "./commands/blueprints/*": {
      "types": "./dist/commands/blueprints/*.d.ts",
      "import": "./dist/commands/blueprints/*.js",
      "require": "./dist/commands/blueprints/*.js"
    },
    "./commands/functions/*": {
      "types": "./dist/commands/functions/*.d.ts",
      "import": "./dist/commands/functions/*.js",
      "require": "./dist/commands/functions/*.js"
    },
    "./cores": {
      "types": "./dist/cores/index.d.ts",
      "import": "./dist/cores/index.js",
      "require": "./dist/cores/index.js"
    },
    "./cores/blueprints": {
      "types": "./dist/cores/blueprints/index.d.ts",
      "import": "./dist/cores/blueprints/index.js",
      "require": "./dist/cores/blueprints/index.js"
    },
    "./cores/functions": {
      "types": "./dist/cores/functions/index.d.ts",
      "import": "./dist/cores/functions/index.js",
      "require": "./dist/cores/functions/index.js"
    },
    "./utils": {
      "types": "./dist/utils/index.d.ts",
      "import": "./dist/utils/index.js",
      "require": "./dist/utils/index.js"
    }
  },
  "engines": {
    "node": ">=20.19"
  },
  "files": [
    "./bin",
    "./dist",
    "./oclif.manifest.json"
  ],
  "bin": {
    "sanity-run": "bin/run.js"
  },
  "scripts": {
    "build": "npm run build:rollup && npm run build:ts && npm run build:static && npm run build:oclif",
    "build:rollup": "rollup -c",
    "build:oclif": "oclif manifest && oclif readme",
    "build:ts": "shx rm -rf dist *.tsbuildinfo && tsc -b",
    "build:static": "npm run copy:wrapper && npm run copy:server",
    "clean": "shx rm -rf dist oclif.manifest.json",
    "copy:server": "shx cp -r ./src/server/static ./dist/server",
    "copy:wrapper": "shx cp ./src/utils/child-process-wrapper.js ./dist/utils/child-process-wrapper.js",
    "lint": "biome ci",
    "lint:write": "biome check --write",
    "lint:fix": "npm run lint:write",
    "prepare": "npm run build",
    "postpack": "shx rm -f oclif.manifest.json",
    "test": "vitest run && npm run lint",
    "test:depmgmt": "vitest run --config ./test-depmgmt/vitest.config.ts",
    "test:api": "cd test/api-types && npm it",
    "typecheck": "tsc --project tsconfig.typecheck.json",
    "watch": "tsc --watch"
  },
  "dependencies": {
    "@architect/hydrate": "^5.0.2",
    "@architect/inventory": "^5.0.0",
    "@inquirer/prompts": "^8.2.1",
    "@oclif/core": "^4.8.0",
    "@oclif/plugin-help": "^6.2.37",
    "@sanity/blueprints": "^0.13.1",
    "@sanity/blueprints-parser": "^0.4.0",
    "@sanity/client": "^7.15.0",
    "adm-zip": "^0.5.16",
    "array-treeify": "^0.1.5",
    "cardinal": "^2.1.1",
    "empathic": "^2.0.0",
    "eventsource": "^4.1.0",
    "groq-js": "^1.27.1",
    "jiti": "^2.6.1",
    "mime-types": "^3.0.2",
    "ora": "^9.3.0",
    "tar-stream": "^3.1.7",
    "vite": "^7.3.1",
    "vite-tsconfig-paths": "^6.1.1",
    "ws": "^8.19.0",
    "xdg-basedir": "^5.1.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.3",
    "@codemirror/lang-json": "^6.0.2",
    "@codemirror/state": "^6.5.4",
    "@enhance/store": "^1.0.2",
    "@lezer/highlight": "^1.2.3",
    "@oclif/test": "^4.1.16",
    "@playwright/test": "^1.58.2",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@sanity/functions": "^1.2.0",
    "@types/adm-zip": "^0.5.7",
    "@types/cardinal": "^2.1.1",
    "@types/mime-types": "^3.0.1",
    "@types/node": "20",
    "@types/tar-stream": "^3.1.4",
    "@types/ws": "^8.18.1",
    "codemirror": "^6.0.2",
    "mentoss": "^0.13.0",
    "oclif": "^4.22.79",
    "pretty-bytes": "^7.1.0",
    "pretty-ms": "^9.3.0",
    "rollup": "^4.57.1",
    "shx": "^0.4.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3",
    "vitest": "4.0.18"
  },
  "oclif": {
    "bin": "sanity-run",
    "dirname": "sanity-run",
    "commands": "./dist/commands",
    "plugins": [
      "@oclif/plugin-help"
    ],
    "topicSeparator": " ",
    "topics": {
      "blueprints": {
        "description": "Local Blueprint and remote Stack management commands"
      },
      "functions": {
        "description": "Sanity Function development and management commands"
      }
    }
  },
  "publishConfig": {
    "access": "public",
    "provenance": false
  }
}
