-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 874 Bytes
/
package.json
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": "github-action-contributors",
"version": "2.0.3",
"description": "Github action generates dynamic image URL for contributor list to display it!.",
"private": true,
"scripts": {
"prepare": "husky && npm run build",
"build": "ncc build src/index.ts -o lib",
"watch": "ncc watch src/index.ts -o lib"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/github-action-contributors"
},
"keywords": [],
"license": "MIT",
"lint-staged": {
"*.ts?(x)": [
"npm run build"
]
},
"engines": {
"node": ">=v20.11.0",
"npm": ">=10.2.4"
},
"dependencies": {
"@actions/core": "~1.10.0",
"@actions/github": "~6.0.0",
"image-size": "~1.1.1",
"image2uri": "~1.1.0"
},
"devDependencies": {
"@kkt/ncc": "~1.1.0",
"husky": "~9.0.11",
"lint-staged": "~15.2.2"
}
}