-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 861 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 861 Bytes
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
{
"name": "github-profile-card-worker",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"tail": "wrangler tail",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cloudflare-workers",
"github",
"profile-card",
"svg"
],
"author": "Null;Variant",
"license": "MIT",
"description": "Generate retro RPG-style SVG profile cards from GitHub user data",
"dependencies": {
"hono": "^4.7.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251225.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-unicorn": "^64.0.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.57.2",
"wrangler": "^4.54.0"
}
}