{
  "name": "valienv",
  "version": "1.0.0",
  "license": "MIT",
  "description": "A simple environment variables validator for Node.js, web browsers and React Native",
  "author": "Mathieu Acthernoene <zoontek@gmail.com>",
  "homepage": "https://github.com/zoontek/valienv#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/zoontek/valienv.git"
  },
  "source": "src/index.ts",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "env",
    "environment",
    "dotenv",
    "validation",
    "validator",
    "typescript"
  ],
  "scripts": {
    "build": "yarn clean && microbundle -f cjs,es",
    "clean": "rm -rf dist",
    "dev": "microbundle watch",
    "format": "prettier '**/*' -u -w",
    "lint": "eslint",
    "test": "vitest --run",
    "test:watch": "vitest --watch",
    "typecheck": "tsc --noEmit",
    "prepack": "yarn lint && yarn test && yarn build"
  },
  "browserslist": [
    ">0.2%",
    "not op_mini all",
    "not dead"
  ],
  "prettier": {
    "plugins": [
      "prettier-plugin-organize-imports"
    ]
  },
  "devDependencies": {
    "@eslint/js": "^9.19.0",
    "@types/node": "^20.17.17",
    "eslint": "^9.19.0",
    "globals": "^15.14.0",
    "microbundle": "^0.15.1",
    "prettier": "^3.4.2",
    "prettier-plugin-organize-imports": "^4.1.0",
    "typescript": "^5.7.3",
    "typescript-eslint": "^8.23.0",
    "vitest": "^3.0.5"
  }
}
