{
  "name": "@shepherdjerred/helm-types",
  "version": "1.6.0",
  "description": "Generate TypeScript types from Helm chart values.yaml and values.schema.json",
  "type": "module",
  "main": "dist/index.js",
  "types": "src/index.ts",
  "exports": {
    ".": {
      "types": "./src/index.ts",
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "helm-types": "dist/cli.js"
  },
  "files": [
    "dist",
    "src",
    "!src/**/*.test.ts",
    "!src/__snapshots__"
  ],
  "scripts": {
    "build": "bun build src/index.ts src/cli.ts --outdir dist --target node",
    "test": "bun test",
    "test:helm-types": "bun test src/helm-types.test.ts",
    "test:cli": "bun test src/cli.test.ts",
    "lint": "bunx eslint .",
    "lint:fix": "bunx eslint . --fix",
    "typecheck": "PATH=node_modules/@typescript/native/bin:$PATH tsc --noEmit",
    "prepublishOnly": "bun run build",
    "generate:live": "bun run src/cli.ts",
    "publish:npm": "bun ../../../../scripts/publish-npm.ts .",
    "test:ci": "bun ../../../../scripts/run-ci-test.ts",
    "test:report": "CI_TEST_COVERAGE=1 bun ../../../../scripts/run-ci-test.ts"
  },
  "keywords": [
    "helm",
    "kubernetes",
    "typescript",
    "types",
    "codegen",
    "k8s"
  ],
  "author": "Jerred Shepherd",
  "license": "GPL-3.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shepherdjerred/monorepo.git",
    "directory": "packages/homelab/src/helm-types"
  },
  "bugs": {
    "url": "https://github.com/shepherdjerred/monorepo/issues"
  },
  "homepage": "https://github.com/shepherdjerred/monorepo/tree/main/packages/homelab/src/helm-types#readme",
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "yaml": "^2.8.3",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@shepherdjerred/eslint-config": "0.3.0",
    "@types/bun": "^1.3.13",
    "eslint": "^10.3.0",
    "jiti": "^2.7.0",
    "@typescript/native": "npm:typescript@7.0.2"
  }
}
