-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "@rightcapital/action-beachball-release",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"license": "MIT",
"author": "RightCapital Ecosystem team <[email protected]>",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist",
"fix": "pnpm run fix:prettier-eslint",
"fix:prettier-eslint": "eslint --fix . && prettier --write .",
"lint": "concurrently 'npm:lint:*'",
"lint:eslint": "eslint --max-warnings=0 .",
"lint:prettier": "prettier --check .",
"prepare": "husky",
"test": "vitest"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/glob": "0.5.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@rightcapital/eslint-config": "37.0.2",
"@rightcapital/prettier-config": "7.1.10",
"@types/node": "22.10.2",
"@vercel/ncc": "0.38.3",
"beachball": "2.51.0",
"commitizen": "4.3.1",
"concurrently": "9.1.0",
"eslint": "9.13.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
}
}