{
  "name": "@neondatabase/env",
  "version": "1.1.4",
  "description": "Resolve and inject Neon connection strings for the branch selected by your neon.ts policy. fetchEnv / parseEnv plus a `neon-env` CLI with `run` and `export`.",
  "keywords": [
    "neon",
    "database",
    "postgres",
    "env",
    "dotenv",
    "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",
  "bin": {
    "neon-env": "dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "README.md",
    "dist/",
    "package.json"
  ],
  "devDependencies": {
    "@types/node": "^20.19.0",
    "@types/yargs": "^17.0.35",
    "@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-internals/cli-core": "0.0.0",
    "@neon/e2e-harness": "0.0.0",
    "@neon-internals/env-core": "0.0.4",
    "@neon/sdk": "2.3.0"
  },
  "dependencies": {
    "zod": "^4.4.3",
    "yargs": "^18.0.0",
    "@neon/config": "1.0.4"
  },
  "optionalDependencies": {
    "@napi-rs/keyring": "1.3.0"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "publishConfig": {
    "provenance": false
  },
  "scripts": {
    "build": "tsc --noEmit && tsdown",
    "test": "pnpm --filter @neon/env... 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"
  }
}