-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.18 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
64
65
66
67
68
69
{
"name": "eslint-suggestion-action",
"version": "4.1.7",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.js",
"type": "module",
"scripts": {
"build": "rm -rf dist && yarn tsc",
"bundle": "rm -rf bundle && yarn ncc build src/index.ts --external eslint --source-map --license licenses.txt --out bundle",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c eslint.config.js",
"prepublishOnly": "pinst --disable && yarn build",
"postpublish": "pinst --enable",
"preversion": "yarn && yarn build && yarn bundle",
"prepare": "is-ci || husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.2.0",
"@octokit/graphql-schema": "^15.3.0",
"@octokit/webhooks-definitions": "^3.67.3",
"@serverless-guru/prettier-plugin-import-order": "^0.4.1",
"@types/eslint": "^9.6.0",
"@types/glob": "^8.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vercel/ncc": "0.38.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.5",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.2",
"pinst": "^3.0.0",
"prettier": "^3.0.2",
"typescript": "^5.0.2",
"typescript-eslint": "^8.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CatChen/eslint-suggestion-action.git"
},
"author": "Cat Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/CatChen/eslint-suggestion-action/issues"
},
"homepage": "https://github.com/CatChen/eslint-suggestion-action#readme",
"funding": "https://github.com/CatChen/eslint-suggestion-action?sponsor=1",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@octokit/plugin-retry": "^7.1.1",
"@octokit/plugin-throttling": "^9.3.0",
"glob": "^11.0.0"
},
"resolutions": {
"strip-ansi": "6.0.1"
},
"lint-staged": {
"*.(ts,js)": "yarn lint --fix",
"*.json": "yarn prettier -w",
"*.(yml,yaml)": "yarn prettier -w",
"*.(md,markdown)": "yarn prettier -w"
}
}