-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 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
{
"name": "github-widgets",
"version": "1.10.0",
"description": "A flexible application for generating dynamic GitHub contribution widgets as SVG images. Supports serverless deployment (Netlify Functions), standalone server (Express), and Docker containers.",
"main": "server/index.js",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/cyrus2281/github-widgets",
"repository": {
"type": "git",
"url": "https://github.com/cyrus2281/github-widgets.git"
},
"bugs": {
"url": "https://github.com/cyrus2281/github-widgets/issues"
},
"scripts": {
"start": "node server/index.js",
"dev": "node server/index.js",
"netlify": "netlify",
"netlify:dev": "netlify dev",
"build": "netlify build",
"deploy": "netlify deploy --prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"github",
"widgets",
"svg",
"contributions",
"readme",
"profile",
"stats",
"netlify",
"serverless",
"express",
"docker"
],
"author": "cyrus2281",
"license": "Apache-2.0",
"dependencies": {
"cors": "^2.8.5",
"d3": "^7.9.0",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"jsdom": "^27.0.0",
"lru-cache": "^10.4.3",
"qrcode": "^1.5.4",
"simple-icons": "^16.14.0"
},
"devDependencies": {
"netlify-cli": "^17.36.4"
}
}