{
  "name": "dotenv-expand",
  "version": "1000.0.0",
  "description": "Expand environment variables using dotenv",
  "main": "dist/lib/main.js",
  "types": "lib/main.d.ts",
  "exports": {
    ".": {
      "require": "./dist/lib/main.js",
      "types": "./lib/main.d.ts",
      "default": "./dist/lib/main.js"
    },
    "./config": "./dist/config.js",
    "./config.js": "./dist/config.js",
    "./package.json": "./package.json"
  },
  "files": [
    "dist/**/*",
    "lib/main.d.ts",
    "config.d.ts",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "esbuild lib/main.js config.js --bundle --platform=node --format=cjs --target=node16 --outdir=dist --outbase=. --legal-comments=none --minify",
    "dts-check": "tsc --project tests/types/tsconfig.json",
    "lint": "biome lint --diagnostic-level=error lib config.js tests",
    "pretest": "npm run lint && npm run dts-check",
    "test": "node tests/main.js",
    "prepack": "npm run build",
    "prepublishOnly": "npm pack --dry-run",
    "prerelease": "npm test",
    "release": "npm version"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dotenvx/dotenv-expand.git"
  },
  "homepage": "https://github.com/dotenvx/dotenv-expand#readme",
  "bugs": {
    "url": "https://github.com/dotenvx/dotenv-expand/issues"
  },
  "funding": "https://dotenvx.com",
  "author": "motdotla",
  "keywords": [
    "dotenv",
    "expand",
    "variables",
    "interpolation",
    "substitution",
    "env",
    ".env"
  ],
  "readmeFilename": "README.md",
  "license": "BSD-3-Clause",
  "devDependencies": {
    "@biomejs/biome": "^2.5.6",
    "@dotenvx/primitives": "2.1.1",
    "@types/node": "^18.11.3",
    "dotenv": "^17.4.2",
    "esbuild": "^0.28.1",
    "typescript": "^4.5.4"
  },
  "engines": {
    "node": ">=16"
  }
}
