{
  "name": "ghextractor",
  "version": "0.11.2",
  "description": "Universal CLI tool to extract GitHub data (PRs, commits, issues, releases) into Markdown/JSON",
  "type": "module",
  "main": "./out/main/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "ghextractor": "bin/ghextractor.js",
    "ghextractor-cli": "bin/ghextractor.js --cli",
    "ghextractor-gui": "bin/ghextractor.js --gui"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "node bin/ghextractor.js",
    "dev:cli": "tsx src/index.ts",
    "dev:gui": "electron-vite dev",
    "build": "npm run build:cli && npm run build:gui",
    "build:cli": "tsup src/index.ts --format esm,cjs --dts",
    "build:gui": "electron-vite build",
    "build:all": "npm run clean:full && npm run build",
    "clean:gui": "rimraf out dist",
    "clean:full": "rimraf out dist node_modules/.vite node_modules/.electron-vite .turbo",
    "preview:gui": "npx electron ./out/main/index.js",
    "test": "vitest",
    "test:unit": "vitest run tests/unit",
    "test:integration": "vitest run tests/integration",
    "test:e2e": "vitest run tests/e2e",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest watch",
    "test:bench": "vitest bench",
    "test:ui": "vitest --ui",
    "lint": "eslint src/**/*.ts tests/**/*.ts vitest.config.ts --ignore-path .eslintignore --quiet",
    "lint:fix": "eslint src/**/*.ts tests/**/*.ts vitest.config.ts --fix --ignore-path .eslintignore --quiet",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"vitest.config.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"vitest.config.ts\"",
    "type-check": "tsc --noEmit",
    "security:audit": "npm audit --audit-level=moderate",
    "security:fix": "npm audit fix",
    "prepublishOnly": "npm run build:all",
    "release": "semantic-release",
    "release:dry": "semantic-release --dry-run",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "knip": "knip",
    "knip:fix": "knip --fix",
    "dead-code": "npx ts-prune"
  },
  "keywords": [
    "github",
    "cli",
    "extractor",
    "export",
    "backup",
    "documentation",
    "pull-requests",
    "issues",
    "commits"
  ],
  "author": "LeSoviet",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LeSoviet/GithubCLIExtractor.git"
  },
  "bugs": {
    "url": "https://github.com/LeSoviet/GithubCLIExtractor/issues"
  },
  "homepage": "https://github.com/LeSoviet/GithubCLIExtractor#readme",
  "dependencies": {
    "@clack/prompts": "^0.8.0",
    "bottleneck": "^2.19.5",
    "chalk": "^5.3.0",
    "chart.js": "^4.5.1",
    "date-fns": "^3.0.0",
    "handlebars": "^4.7.8",
    "marked": "^15.0.12",
    "ora": "^8.0.0",
    "pdf-lib": "^1.17.1",
    "puppeteer": "^25.9.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "update-notifier": "^7.3.1"
  },
  "devDependencies": {
    "@semantic-release/git": "^10.0.1",
    "@types/node": "^20.10.0",
    "@types/react": "^18.3.5",
    "@types/react-dom": "^18.3.0",
    "@types/update-notifier": "^6.0.8",
    "@typescript-eslint/eslint-plugin": "^8.69.0",
    "@typescript-eslint/parser": "^8.69.0",
    "@vitejs/plugin-react": "^4.3.1",
    "@vitest/coverage-v8": "^4.1.11",
    "electron": "^44.1.1",
    "electron-vite": "^5.0.0",
    "eslint": "^8.56.0",
    "happy-dom": "^20.0.10",
    "knip": "^5.70.1",
    "lint-staged": "^15.2.0",
    "msw": "^2.12.2",
    "prettier": "^3.2.0",
    "rimraf": "^6.1.2",
    "semantic-release": "^25.0.2",
    "ts-prune": "^0.10.3",
    "tsup": "^8.0.0",
    "tsx": "^4.7.0",
    "typescript": "^5.3.0",
    "vite": "^5.4.2",
    "vitepress": "^1.6.4",
    "vitest": "^4.1.11"
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "prettier --write",
      "eslint --fix"
    ]
  }
}
