-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.41 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@react-hookz/eslint-formatter-gha",
"description": "Eslint formatter that that outputs GitHub Actions annotations.",
"version": "3.0.0",
"keywords": [
"eslint",
"formatter",
"github",
"eslint-formatter",
"eslintformatter",
"guthub-actions",
"guthubactions"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/react-hookz/eslint-formatter-gha.git"
},
"bugs": {
"url": "https://github.com/react-hookz/eslint-formatter-gha/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.5.0",
"@react-hookz/eslint-config": "^4.1.6",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"pinst": "^3.0.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3"
},
"scripts": {
"postinstall": "husky",
"build": "yarn build:clean && tsc --version && tsc",
"build:clean": "yarn rimraf ./dist",
"lint": "eslint",
"lint:fix": "yarn lint --fix --fix-type problem,suggestion,layout"
},
"packageManager": "[email protected]"
}