-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 900 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 900 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
36
{
"name": "contribscope",
"version": "0.1.0",
"private": true,
"description": "Generate deduplicated GitHub contributor images for repos, repo groups, orgs, and users.",
"type": "module",
"scripts": {
"dev": "wrangler dev src/index.ts --port 8787 --local",
"deploy": "wrangler deploy",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "pnpm typecheck && pnpm test",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\""
},
"keywords": [
"github",
"contributors",
"readme",
"svg",
"cloudflare-workers",
"hono"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@11.1.3",
"dependencies": {
"hono": "^4.10.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260510.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"vitest": "^4.0.14",
"wrangler": "^4.50.0"
}
}