-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "github-action-contributors",
"version": "1.0.0",
"description": "GitHub action generates dynamic image URL for contributor list to display it!",
"license": "MIT",
"homepage": "https://github.com/idimetrix/github-action-contributors#readme",
"url": "https://github.com/idimetrix/github-action-contributors",
"bugs": {
"url": "https://github.com/idimetrix/github-action-contributors/issues"
},
"keywords": [],
"author": {
"name": "Dmitrii Selikhov",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dimetrix"
},
"contributors": [
{
"name": "Dmitrii Selikhov",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dimetrix"
}
],
"repository": {
"type": "git",
"url": "https://github.com/idimetrix/github-action-contributors.git"
},
"email": "[email protected]",
"scripts": {
"prepare": "husky && npm run build",
"build": "ncc build src/index.ts -o lib",
"watch": "ncc watch src/index.ts -o lib",
"type": "tsc --noEmit --incremental",
"prettier": "prettier --write src/**",
"format": "npm run prettier && npm run type",
"bootstrap": "npm install && npm run format"
},
"lint-staged": {
"*.ts?(x)": [
"npm run build"
]
},
"engines": {
"node": ">=v20.11.0",
"npm": ">=10.2.4"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"image-size": "1.1.1",
"image2uri": "2.1.2"
},
"devDependencies": {
"@kkt/ncc": "1.1.2",
"husky": "9.1.6",
"prettier": "3.3.3",
"typescript": "5.6.3",
"lint-staged": "15.2.10"
}
}