{
  "name": "@uiwwsw/react-query-helper",
  "version": "1.3.0",
  "module": "dist/index.js",
  "type": "module",
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "license": "MIT",
  "description": "React Query Helper is a CLI tool that automatically generates React Query hooks and option objects from TypeScript API functions.",
  "keywords": [
    "react",
    "react-query",
    "tanstack-query",
    "codegen",
    "generator",
    "cli",
    "typescript",
    "automation",
    "hooks"
  ],
  "homepage": "https://github.com/uiwwsw/react-query-helper#readme",
  "bugs": {
    "url": "https://github.com/uiwwsw/react-query-helper/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/uiwwsw/react-query-helper.git"
  },
  "author": "uiwwsw",
  "files": [
    "dist"
  ],
  "bin": {
    "react-query-helper": "dist/cli.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./config": {
      "import": "./dist/config.js",
      "types": "./dist/config.d.ts"
    },
    "./core/analyzer": {
      "import": "./dist/core/analyzer.js",
      "types": "./dist/core/analyzer.d.ts"
    },
    "./core/generator": {
      "import": "./dist/core/generator.js",
      "types": "./dist/core/generator.d.ts"
    }
  },
  "sideEffects": false,
  "scripts": {
    "start": "bun run src/index.ts",
    "build": "tsc && bun build src/cli.ts --outdir dist --target node --external typescript --external prettier && bun build src/index.ts --outdir dist --target node --external typescript --external prettier && bun build src/config.ts --outdir dist --target node --external typescript --external prettier && bun build src/core/analyzer.ts --outdir dist/core --target node --external typescript --external prettier && bun build src/core/generator.ts --outdir dist/core --target node --external typescript --external prettier && node scripts/prepend-shebang.cjs dist/cli.js",
    "dev": "bun run src/cli.ts --watch",
    "generate": "bun run src/cli.ts --generate",
    "test": "npm run build && node --test test/**/*.test.mjs"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/node": "^24.1.0",
    "chokidar": "^4.0.3"
  },
  "peerDependencies": {
    "@tanstack/react-query": "^5.83.0"
  },
  "dependencies": {
    "fs": "^0.0.1-security",
    "prettier": "^3.6.2",
    "typescript": "^5.8.3"
  },
  "engines": {
    "node": ">=22"
  }
}
