-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist/main --source-map --license licenses.txt",
"lint": "eslint .",
"test": "NODE_OPTIONS='--disable-warning=ExperimentalWarning --experimental-vm-modules' jest --forceExit --detectOpenHandles",
"ts-node": "NODE_OPTIONS='--require ts-node/register --loader ts-node/esm' node"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.2",
"@octokit/graphql-schema": "^15.25.0",
"yaml": "^2.5.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.16",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.19.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"engines": {
"node": ">=20.0.0"
}
}