-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 780 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 780 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
32
{
"name": "github-stats",
"version": "1.0.0",
"description": "Generate visualizations of GitHub user and repository statistics",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"start": "tsx src/main.ts",
"dev": "tsx watch src/main.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"lint:quiet": "eslint src --ext .ts --quiet"
},
"keywords": [
"github",
"stats",
"visualization"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.13.2"
},
"devDependencies": {
"@types/node": "^24.10.6",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
}
}