-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 814 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 814 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
{
"name": "github-action-merged-pull-requests",
"version": "1.1.1",
"description": "A GitHub action to showcase your merged pull requests on GitHub.",
"main": "src/index.ts",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"release": "release-it",
"watch": "npm run build -- --watch"
},
"keywords": [
"actions",
"contributions",
"github",
"graphql",
"profile",
"pull-requests",
"readme",
"showcase",
"statistics"
],
"author": "Ramiro Gómez",
"license": "GPL-2.0-only",
"devDependencies": {
"@types/node": "^17.0.5",
"esbuild": "^0.25.0",
"release-it": "^18.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@actions/core": "^1.6.0",
"graphql-request": "^3.7.0"
}
}