-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "keymap2img",
"version": "1.0.0",
"description": "Generate Images of your keymap from your GitHub repository",
"main": "src/app.ts",
"type": "module",
"scripts": {
"start": "node ./dist/app.js",
"tsc": "tsc",
"postinstall": "npm run tsc",
"dev": "tsx watch ./src/app.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@napi-rs/canvas": "^0.1.60",
"@octokit/rest": "^21.0.2",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"node-cache": "^5.1.2",
"sanitize-filename": "^1.6.3",
"yaml": "^2.6.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/express": "^5.0.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"globals": "^15.12.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"winston": "^3.17.0"
}
}