-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 945 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 945 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
{
"name": "bugmerge-stats",
"version": "0.1.1",
"description": "Generate a static SVG contribution card with the unique filed-and-fixed metric",
"type": "module",
"bin": {
"bugmerge-stats": "./dist/index.js"
},
"files": [
"dist",
"action.yml"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=esm --outfile=dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": ["github", "stats", "svg", "contribution", "profile", "readme"],
"author": "Nexory",
"license": "MIT",
"dependencies": {
"@octokit/graphql": "^8.1.1",
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@types/node": "^20.14.0",
"esbuild": "^0.21.5",
"tsx": "^4.15.7",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20.0.0"
}
}