-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
46 lines (46 loc) · 1.2 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
{
"private": true,
"version": "4.1.2",
"license": "MIT",
"description": "This package.json is here purely to control the version of the Action, in combination with https://github.com/JamesHenry/publish-shell-action",
"scripts": {
"build": "ncc build find-successful-workflow.ts --license licenses.txt",
"prepare": "is-ci || husky install",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"bugs": {
"url": "https://github.com/nrwl/nx-set-shas/issues"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "20.9.0",
"yarn": "1.22.21"
},
"packageManager": "[email protected]",
"homepage": "https://github.com/nrwl/nx-set-shas#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"@octokit/action": "^6.1.0",
"https-proxy-agent": "7.0.2",
"proxy-from-env": "1.1.0"
},
"devDependencies": {
"@types/node": "^20.17.2",
"@vercel/ncc": "^0.36.1",
"chalk": "^4.1.2",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "15.1.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{ts,json,yml,md}": [
"npx prettier --write"
]
}
}