{
  "name": "github-repo-cataloger",
  "version": "1.0.0",
  "description": "Catalog GitHub repositories by prefix with language analysis",
  "main": "dist/index.js",
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "ts-node src/index.ts",
    "graphql": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node src/graphql-sync.ts",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "lint": "biome check .",
    "format": "biome format --write .",
    "check": "biome check --write ."
  },
  "keywords": ["github", "api", "typescript", "cataloger"],
  "author": "Your Name",
  "license": "MIT",
  "devDependencies": {
    "@biomejs/biome": "^1.8.3",
    "@types/node": "^20.5.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.6"
  },
  "dependencies": {
    "dotenv": "^16.3.1"
  }
}