{
  "name": "vite-plugin-safe-env",
  "version": "1.1.0",
  "description": "A Vite plugin that prevents server-only environment variables from leaking into client-side bundles.",
  "keywords": [
    "bundle",
    "dotenv",
    "env",
    "environment-variables",
    "leak",
    "process-env",
    "secret",
    "security",
    "typescript",
    "vite",
    "vite-plugin"
  ],
  "homepage": "https://github.com/chicong065/vite-plugin-safe-env#readme",
  "bugs": {
    "url": "https://github.com/chicong065/vite-plugin-safe-env/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Cong Nguyen",
    "email": "chicong065@gmail.com",
    "url": "https://github.com/chicong065"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/chicong065/vite-plugin-safe-env"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "imports": {
    "#plugin": "./dist/index.js",
    "#env-classification": "./dist/env-classification.js",
    "#scanner": "./dist/scanner.js",
    "#registry": "./dist/registry.js",
    "#graph": "./dist/graph.js",
    "#bundle-scan": "./dist/bundle-scan.js",
    "#reporter": "./dist/reporter.js",
    "#worker": "./dist/worker.js",
    "#types": "./dist/types.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "format": "oxfmt",
    "format:check": "oxfmt --check",
    "lint": "oxlint",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@jridgewell/trace-mapping": "^0.3.25"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^3.0.0",
    "oxfmt": "^0.46.0",
    "oxlint": "^1.61.0",
    "oxlint-tsgolint": "^0.21.1",
    "tsdown": "^0.21.0",
    "typescript": "^5.5.0",
    "vite": "^6.0.0",
    "vitest": "^3.0.0"
  },
  "peerDependencies": {
    "vite": ">=4.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "pnpm": {
    "onlyBuiltDependencies": [
      "esbuild",
      "rolldown"
    ]
  }
}
