-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"version": "5.0.1",
"private": true,
"description": "This package.json is here purely to control the version of the Action, in combination with https://github.com/JamesHenry/publish-shell-action",
"homepage": "https://github.com/nrwl/nx-set-shas#readme",
"bugs": {
"url": "https://github.com/nrwl/nx-set-shas/issues"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "bun build ./nx-set-shas.ts --outdir ./dist --target node",
"prepare": "is-ci || husky",
"format:check": "oxfmt --check .",
"format": "oxfmt --write ."
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@types/node": "^24.12.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^16.1.2",
"oxfmt": "^0.41.0",
"typescript": "^5.8.3",
"yoctocolors": "^2.1.1"
},
"lint-staged": {
"*.{ts,json,yml,md}": [
"npx oxfmt --write"
]
},
"engines": {
"node": ">=24"
},
"volta": {
"node": "24.14.0"
},
"packageManager": "bun@1.2.19"
}