{
  "name": "envin",
  "version": "1.3.0",
  "description": "Type-safe env validation with live previews",
  "keywords": [
    "turbostarter",
    "environment variables",
    "validation",
    "zod",
    "arktype",
    "valibot"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/turbostarter/envin.git",
    "directory": "packages/core"
  },
  "homepage": "https://envin.turbostarter.dev",
  "bugs": {
    "url": "https://github.com/turbostarter/envin/issues"
  },
  "license": "MIT",
  "author": "Bartosz Zagrodzki",
  "type": "module",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    },
    "./presets/*": {
      "types": "./dist/presets/*.d.mts",
      "default": "./dist/presets/*.mjs"
    },
    "./types": {
      "types": "./dist/types.d.mts",
      "default": "./dist/types.mjs"
    }
  },
  "files": [
    "dist",
    "package.json",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "tsdown",
    "clean": "rm -rf dist .turbo node_modules",
    "dev": "tsdown --watch",
    "start": "node dist/index.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "prepack": "bun run ../../scripts/populate-readme.ts"
  },
  "devDependencies": {
    "@types/bun": "^1.3.5",
    "arktype": "catalog:",
    "expect-type": "^1.3.0",
    "tsdown": "catalog:",
    "typescript": "catalog:",
    "valibot": "catalog:",
    "vitest": "4.1.2",
    "zod": "catalog:"
  },
  "peerDependencies": {
    "arktype": "^2.1.0",
    "typescript": ">=5.0.0",
    "valibot": "^1.0.0",
    "zod": "^3.24.0 || ^4.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    },
    "valibot": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  }
}
