-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.52 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "github-analytics-tracker",
"version": "1.0.0",
"description": "Multi-source analytics tracker for open-source projects. Preserves GitHub traffic beyond the 14-day retention limit and aggregates npm, PyPI, and Docker download stats with a Next.js dashboard.",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "node --test test/*.test.js",
"collect": "node scripts/collect-stats.js",
"collect-npm": "node scripts/collect-npm-stats.js",
"collect-docker": "node scripts/collect-docker-stats.js",
"collect-pypi": "node scripts/collect-pypi-stats.js",
"collect:pypi-countries": "node scripts/collect-pypi-country-stats.js",
"collect-hf": "node scripts/collect-huggingface-stats.js",
"collect-chrome": "node scripts/collect-chrome-stats.js",
"collect-telemetry": "node scripts/collect-telemetry-stats.js",
"collect-all": "node scripts/collect-stats.js && node scripts/collect-npm-stats.js && node scripts/collect-pypi-stats.js && node scripts/collect-pypi-country-stats.js && node scripts/collect-docker-stats.js && node scripts/collect-huggingface-stats.js && node scripts/collect-chrome-stats.js && node scripts/collect-telemetry-stats.js",
"setup-db": "node scripts/setup-database.js",
"generate-md": "node scripts/generate-markdown.js",
"generate-summary": "node scripts/generate-summary.js"
},
"keywords": [
"github",
"analytics",
"tracking",
"statistics",
"npm-stats",
"pypi-stats",
"docker-stats",
"github-traffic",
"open-source",
"metrics",
"dashboard",
"sqlite",
"nextjs"
],
"author": "OpenA2A",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opena2a-org/github-analytics-tracker.git"
},
"homepage": "https://github.com/opena2a-org/github-analytics-tracker#readme",
"bugs": {
"url": "https://github.com/opena2a-org/github-analytics-tracker/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@google-cloud/bigquery": "^8.1.1",
"@octokit/rest": "^20.0.2",
"better-sqlite3": "^12.6.2",
"date-fns": "^3.0.6",
"dotenv": "^16.3.1",
"lucide-react": "^0.469.0",
"next": "^16.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"typescript": "^5"
},
"overrides": {
"postcss": "^8.5.10"
}
}