-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.22 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
{
"name": "github-stats-generator",
"version": "0.4.0",
"description": "English-only SVG GitHub stats cards for READMEs",
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/graphql": "^9.0.3",
"@resvg/resvg-js": "^2.6.2",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"svg-builder": "^3.0.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.7.0",
"@types/supertest": "^7.2.0",
"fast-xml-parser": "^5.8.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "3.8.3",
"supertest": "^7.2.2",
"tsx": "^4.22.1",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"scripts": {
"build": "tsc --noEmit",
"dev": "tsx watch src/server.ts",
"dev:compiled": "tsc -p tsconfig.runtime.json --outDir .dev-dist && node .dev-dist/src/server.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}