{
  "name": "repo-stats",
  "version": "0.1.0",
  "description": "A maintainer dashboard for open-source projects. Reports stars, forks, contributors, recent issues, and PR activity for any public GitHub repository — straight from the terminal.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "repo-stats": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "dev": "tsc -p tsconfig.build.json --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "tsc --noEmit",
    "format": "prettier --write \"src/**/*.ts\"",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": [
    "github",
    "oss",
    "open-source",
    "maintainer",
    "dashboard",
    "cli",
    "stats",
    "metrics"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^12.1.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "typescript": "^5.7.0",
    "vitest": "^2.1.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ignaciolagosruiz/repo-stats.git"
  },
  "bugs": {
    "url": "https://github.com/ignaciolagosruiz/repo-stats/issues"
  },
  "homepage": "https://github.com/ignaciolagosruiz/repo-stats#readme",
  "author": {
    "name": "ignaciolagosruiz",
    "url": "https://github.com/ignaciolagosruiz"
  }
}
