forked from htunnicliff/replace-comment-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "@side/replace-comment-html-action",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "./dist/index.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint src/**/*.ts",
"build": "ncc build src/index.ts -o dist --minify --license licenses.txt",
"check-types": "tsc --noEmit",
"test": "echo 'No tests yet'",
"format:base": "prettier --ignore-path .eslintignore",
"format": "yarn format:base --write .",
"format:check": "yarn format:base --check ."
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"cheerio": "^1.0.0-rc.12",
"common-tags": "^1.8.2"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@side/commitlint-config": "^1.0.1",
"@side/eslint-config-base": "^2.1.0",
"@side/prettier-config": "^1.0.0",
"@tsconfig/node20": "^20.1.2",
"@types/common-tags": "^1.8.4",
"@types/eslint": "^8",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"prettier": "@side/prettier-config",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,yaml,yml,json,html,css,md}": [
"yarn format:base --write"
]
}
}