-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 779 Bytes
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
{
"name": "git-ladder",
"version": "1.0.0",
"description": "A GitHub Pages website displaying commits and pull requests leaderboard for GitHub organizations",
"private": true,
"type": "module",
"author": "Benoit VIGNAL",
"license": "GNU AGPLv3",
"keywords": [
"github",
"leaderboard",
"statistics",
"contributions"
],
"packageManager": "pnpm@10.13.1",
"scripts": {
"build": "mkdir -p vendor && cp node_modules/chart.js/dist/chart.umd.js vendor/chart.js",
"fetch-data": "node scripts/fetch-stats.js",
"serve": "pnpm run build && pnpm dlx serve ."
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"chart.js": "^4.5.1"
},
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"dotenv": "^17.4.2"
}
}