{
  "name": "@neon/config",
  "version": "1.0.2",
  "description": "Config-as-Code for Neon. Define a `neon.ts` policy and inspect/diff/deploy it against the Neon API as plain TypeScript functions.",
  "keywords": [
    "neon",
    "database",
    "postgres",
    "iac",
    "config-as-code",
    "platform"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/neondatabase/neon-pkgs.git"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "Neon",
    "url": "https://neon.com"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./v1": {
      "types": "./dist/v1.d.ts",
      "import": "./dist/v1.js",
      "default": "./dist/v1.js"
    }
  },
  "files": [
    "README.md",
    "dist/",
    "package.json"
  ],
  "devDependencies": {
    "@types/node": "^20.19.0",
    "@vitest/coverage-v8": "^3.0.9",
    "console-fail-test": "0.5.0",
    "tsdown": "^0.14.1",
    "typescript": "^5.9.0",
    "vitest": "^3.0.9",
    "@neon/e2e-harness": "0.0.0"
  },
  "dependencies": {
    "jiti": "^2.7.0",
    "zod": "^4.4.3",
    "@neon/sdk": "2.2.0"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "publishConfig": {
    "provenance": false
  },
  "scripts": {
    "build": "tsc --noEmit && tsdown",
    "test": "pnpm --filter @neon/config... build && vitest --passWithNoTests",
    "test:ci": "vitest run --passWithNoTests",
    "test:types": "vitest run --typecheck.enabled --typecheck.only",
    "test:e2e": "vitest run --config vitest.e2e.config.ts",
    "tsc": "tsc"
  }
}