-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 904 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 904 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
37
38
39
40
41
42
43
{
"name": "oss-widgets",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Live SVG widgets for GitHub contribution stats",
"author": "John Costa",
"license": "MIT",
"homepage": "https://oss-widgets.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/costajohnt/oss-widgets"
},
"keywords": [
"github",
"widgets",
"svg",
"contributions",
"profile",
"stats",
"vercel"
],
"scripts": {
"dev": "vercel dev",
"deploy": "vercel --prod",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"dependencies": {
"@octokit/rest": "^22.0.1"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.5.0",
"vitest": "^4.1.0"
},
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=20.0.0"
}
}