{
  "name": "@fossiq/enval",
  "version": "0.1.6",
  "description": "A highly opinionated way to parse env values that I find useful.",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "unpkg": "./dist/index.min.js",
  "jsdelivr": "./dist/index.min.js",
  "types": "./dist/index.d.ts",
  "files": ["dist"],
  "scripts": {
    "build": "bun scripts/build.ts",
    "clean": "rm -rf dist",
    "test": "bun test",
    "lint": "biome check .",
    "lint:fix": "biome check . --write",
    "prepare": "cp scripts/pre-commit-hook.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
    "prepublishOnly": "bun run build",
    "publish:npm": "bunx npm@latest publish --access public",
    "publish:jsr": "jsr publish",
    "publish:all": "bun run build && bun run publish:npm && bun run publish:jsr"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/fossiq/enval.git"
  },
  "keywords": ["env", "types", "inference"],
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "bun-types": "^1.3.8",
    "typescript": "^5.9.3"
  }
}
