forked from nrwl/nx-set-shas
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 KB
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
{
"private": true,
"version": "4.4.0",
"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",
"type": "module",
"scripts": {
"build": "bun build ./nx-set-shas.ts --outdir ./dist --target node",
"prepare": "is-ci || husky",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"bugs": {
"url": "https://github.com/nrwl/nx-set-shas/issues"
},
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.19.4"
},
"packageManager": "bun@1.2.19",
"homepage": "https://github.com/nrwl/nx-set-shas#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1"
},
"devDependencies": {
"@types/node": "^20.19.9",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"yoctocolors": "^2.1.1"
},
"lint-staged": {
"*.{ts,json,yml,md}": [
"npx prettier --write"
]
}
}