{
  "name": "@vercel/config",
  "version": "0.6.1",
  "description": "A TypeScript SDK for programmatically configuring Vercel projects",
  "license": "MIT",
  "homepage": "https://vercel.com/docs/projects/project-configuration",
  "repository": {
    "type": "git",
    "url": "https://github.com/vercel/vercel.git",
    "directory": "packages/config"
  },
  "main": "dist/v1/index.js",
  "types": "dist/v1/index.d.ts",
  "typesVersions": {
    "*": {
      "v1": [
        "dist/v1/index.d.ts"
      ],
      "v1/types": [
        "dist/v1/types.d.ts"
      ]
    }
  },
  "exports": {
    "./v1": "./dist/v1/index.js",
    "./v1/types": {
      "types": "./dist/v1/types.d.ts"
    }
  },
  "bin": {
    "@vercel/config": "./dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "pretty-cache-header": "^1.0.0",
    "zod": "^3.22.0",
    "@vercel/routing-utils": "6.5.0"
  },
  "devDependencies": {
    "@types/node": "20.11.0",
    "tsx": "4.21.0",
    "vite": "^6.4.3",
    "vitest": "^4.1.10"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "generate-types": "tsx scripts/generate-types.ts",
    "type-check": "tsc --noEmit",
    "test-unit": "vitest run --config ../../vitest.config.mts",
    "test": "vitest run --config ../../vitest.config.mts"
  }
}