-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "github-flex",
"version": "0.1.0",
"type": "module",
"description": "Flex your GitHub stats with customizable SVG badges for your profile. Because your GitHub profile deserves to look as good as your code...right?!",
"main": "index.js",
"scripts": {
"build": "tsc && cp -r public dist/",
"type-check": "tsc --noEmit",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix"
},
"keywords": [
"github",
"stats",
"badges",
"svg",
"visualization",
"vercel",
"serverless",
"node",
"typescript",
"api",
"customizable",
"themes",
"languages",
"repositories",
"open-source"
],
"author": "Alexandru Moraru",
"homepage": "https://github.com/alemoraru/github-flex",
"bugs": {
"url": "https://github.com/alemoraru/github-flex/issues"
},
"license": "MIT",
"dependencies": {
"@vercel/node": "^5.6.3"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"prettier": "3.8.0",
"typescript": "^5.9.3",
"vercel": "^50.17.1"
}
}