-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "claude-code-leaderboard",
"version": "0.2.9",
"description": "CLI tool for tracking Claude Code usage and leaderboard participation",
"bin": {
"claude-code-leaderboard": "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 ./claude-code-leaderboard-*.tgz",
"unpack-test": "npm uninstall -g claude-code-leaderboard"
},
"keywords": [
"claude-code",
"leaderboard",
"usage-tracking",
"twitter-auth",
"cli"
],
"author": "georgepickett",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grp06/claude-code-leaderboard.git"
},
"bugs": {
"url": "https://github.com/grp06/claude-code-leaderboard/issues"
},
"homepage": "https://claudecount.com",
"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"
]
}