{
  "name": "@ngrok/gen-x",
  "version": "0.5.0",
  "description": "Generate package.json#exports from src",
  "author": "ngrok",
  "repository": {
    "type": "git",
    "url": "https://github.com/ngrok-oss/gen-x"
  },
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=24"
  },
  "keywords": [],
  "files": [
    "dist",
    "package.json"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "commander": "15.0.0",
    "tinyglobby": "0.2.17"
  },
  "devDependencies": {
    "@changesets/changelog-github": "0.7.0",
    "@changesets/cli": "2.31.0",
    "@total-typescript/ts-reset": "0.6.1",
    "@types/node": "24.13.3",
    "oxfmt": "0.58.0",
    "oxlint": "1.73.0",
    "tsx": "4.23.1",
    "typescript": "7.0.2",
    "vitest": "4.1.10"
  },
  "scripts": {
    "build": "pnpm run compile",
    "changeset": "changeset",
    "compile": "tsc --project tsconfig.compile.json",
    "fmt:check": "oxfmt --check .",
    "fmt": "oxfmt --write .",
    "lint:fix": "oxlint --fix .",
    "lint": "oxlint .",
    "precompile": "rm -rf dist tsconfig.compile.tsbuildinfo",
    "test": "vitest",
    "typecheck": "tsc --noEmit"
  },
  "bin": {
    "gen-x": "./dist/cli.js"
  }
}