-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"private": true,
"name": "get-next-release-version-action",
"main": "lib/main.js",
"dependencies": {
"@actions/core": "^1.11.1",
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@gravity-ui/eslint-config": "^3.1.1",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"vitest": "^2.0.4",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"husky": "^9.1.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1"
},
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --check",
"eslint"
],
"*.{md,yaml,json,js}": [
"prettier --check"
]
},
"scripts": {
"lint:check": "npm run lint:check:prettier && npm run lint:check:eslint",
"lint:check:eslint": "eslint .",
"lint:check:prettier": "prettier --check .",
"lint:fix": "npm run lint:fix:prettier && npm run lint:fix:eslint",
"lint:fix:eslint": "eslint . --fix",
"lint:fix:prettier": "prettier --write .",
"test": "vitest",
"test:unit": "vitest tests/unit",
"test:integration": "vitest tests/integration",
"build": "tsc",
"package": "rm -rf ./lib ./dist && npm run build && ncc build",
"prepare": "husky"
}
}