-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.01 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
{
"name": "@fajarkim/github-readme-profile",
"version": "1.1.3",
"description": "🙀 Generate dynamic GitHub stats cards in SVG format. Fast, customizable, and ready to embed in your profile README.",
"main": "api/index.ts",
"dependencies": {
"@actions/core": "^2.0.3",
"@barudakrosul/parse-boolean": "^0.0.2",
"@resvg/resvg-js": "^2.6.2",
"@types/escape-html": "^1.0.4",
"@types/express": "^5.0.6",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^25.5.0",
"axios": "^1.15.0",
"dotenv": "^17.3.1",
"escape-html": "^1.0.3",
"express": "^5.2.1",
"html-minifier-terser": "^7.2.0",
"millify": "^6.1.0",
"node-base64-image": "^2.2.0",
"sharp": "^0.34.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"scripts": {
"test": "jest",
"dev": "nodemon ./withexpress.ts",
"build": "tsc",
"theme-readme-gen": "ts-node scripts/generate-theme-doc.ts",
"locale-readme-gen": "ts-node scripts/generate-translation-doc.ts",
"start": "node ./public/withexpress.js"
},
"author": "Rangga Fajar Oktariansyah",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FajarKim/github-readme-profile.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"keywords": [
"github-readme-stats",
"github-stats",
"github-readme-profile",
"github-profile-stats"
],
"bugs": {
"url": "https://github.com/FajarKim/github-readme-profile/issues"
},
"homepage": "https://github.com/FajarKim/github-readme-profile#readme",
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/fajarkim"
}
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@markdoc/markdoc": "^0.5.7",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.14",
"ts-jest": "^29.4.6"
}
}