-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"engines": {
"node": ">=20.0.0"
},
"main": "lib/src/main.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --coverage",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "^5.1.1",
"ts-markdown": "^1.2.0"
},
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.10.4",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.17.0",
"eslint-plugin-jest": "28.10.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"pinst": "^3.0.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
}
}