{
  "name": "@humanwhocodes/env",
  "version": "4.0.1",
  "description": "A utility to verify that environment variables exist.",
  "type": "module",
  "main": "dist/env.cjs",
  "module": "dist/env.js",
  "types": "dist/env.d.ts",
  "exports": {
    "require": {
      "types": "./dist/env.d.cts",
      "default": "./dist/env.cjs"
    },
    "import": {
      "types": "./dist/env.d.ts",
      "default": "./dist/env.js"
    }
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "gitHooks": {
    "pre-commit": "lint-staged"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ]
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/nzakas"
  },
  "scripts": {
    "build": "rollup -c && tsc && node -e \"fs.copyFileSync('./dist/env.d.ts', './dist/env.d.cts')\"",
    "prepare": "npm run build",
    "lint": "eslint src/ tests/",
    "pretest": "npm run build",
    "test:unit": "mocha tests/env.test.js",
    "test:build": "node tests/pkg.test.cjs && node tests/pkg.test.mjs",
    "test:types": "node tests/types.test.js",
    "test": "npm run test:unit && npm run test:build && npm run test:types"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/humanwhocodes/env.git"
  },
  "keywords": [
    "nodejs",
    "deno",
    "environment",
    "environment variables"
  ],
  "author": "Nicholas C. Zakas",
  "license": "BSD-3-Clause",
  "devDependencies": {
    "@eslint/js": "^9.0.0",
    "@rollup/plugin-terser": "0.4.4",
    "@tsconfig/node16": "^16.1.1",
    "@types/chai": "^4.3.9",
    "@types/mocha": "^10.0.3",
    "@types/node": "22.10.1",
    "chai": "4.5.0",
    "eslint": "^9.0.0",
    "lint-staged": "15.2.10",
    "mocha": "11.0.0",
    "rollup": "4.24.2",
    "typescript": "5.7.2",
    "yorkie": "2.0.0"
  },
  "engines": {
    "node": "^16.20.0 || ^18.0.0 || ^20.0.0 || >=22.0.0"
  }
}
