-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"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": "^6.0.1",
"ts-markdown": "^1.3.0"
},
"devDependencies": {
"@tsconfig/node20": "20.1.6",
"@types/jest": "30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "24.3.0",
"@typescript-eslint/eslint-plugin": "8.41.0",
"@typescript-eslint/parser": "8.41.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.34.0",
"eslint-plugin-jest": "29.0.1",
"husky": "^9.1.7",
"jest": "30.1.1",
"pinst": "^3.0.0",
"prettier": "3.6.2",
"ts-jest": "29.4.1",
"typescript": "5.9.2"
}
}