-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
43
44
45
46
47
48
49
50
51
{
"name": "@ver0/eslint-formatter-gha",
"description": "ESLint formatter for Github Actions",
"version": "1.0.0",
"keywords": [
"eslint",
"formatter",
"eslint-formatter",
"guthub-actions"
],
"repository": {
"type": "git",
"url": "https://github.com/ver0-project/eslint-formatter-gha"
},
"bugs": {
"url": "https://github.com/ver0-project/eslint-formatter-gha/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Anton Zinovyev <xog3@yandex.ru>",
"engines": {
"node": ">=18"
},
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn build:clean && yarn tsc -p tsconfig.build.json",
"build:clean": "rimraf dist",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"packageManager": "yarn@4.9.1",
"dependencies": {
"@actions/core": "^3.0.0"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^25.4.0",
"@ver0/eslint-config": "^1.3.6",
"eslint": "^9.39.2",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
}
}