UNPKG

codebrag

Version:

CLI tool for tracking Claude Code usage and leaderboard participation

58 lines (57 loc) 1.39 kB
{ "name": "codebrag", "version": "0.1.6", "description": "CLI tool for tracking Claude Code usage and leaderboard participation", "bin": { "codebrag": "./bin/cli.js" }, "main": "./src/index.js", "type": "module", "engines": { "node": ">=16.0.0" }, "scripts": { "start": "node bin/cli.js", "dev": "node bin/cli.js", "test": "echo \"Error: no test specified\" && exit 1", "local-auth": "node bin/cli.js auth", "local-stats": "node bin/cli.js stats", "local-leaderboard": "node bin/cli.js leaderboard", "pack-test": "npm pack && npm install -g ./codebrag-*.tgz", "unpack-test": "npm uninstall -g codebrag" }, "keywords": [ "claude-code", "leaderboard", "usage-tracking", "twitter-auth", "cli" ], "author": "georgepickett", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/georgepickett/codebrag.git" }, "bugs": { "url": "https://github.com/georgepickett/codebrag/issues" }, "homepage": "https://github.com/georgepickett/codebrag#readme", "dependencies": { "chalk": "^5.3.0", "commander": "^11.0.0", "express": "^4.18.0", "inquirer": "^9.2.0", "node-fetch": "^3.3.0", "open": "^9.1.0", "ora": "^8.2.0", "tinyglobby": "^0.2.14" }, "files": [ "bin", "src", "hooks", "package.json", "README.md" ] }