-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 942 Bytes
/
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
{
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.ts",
"lint": "eslint .",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --forceExit --detectOpenHandles",
"ts-node": "NODE_OPTIONS='--require ts-node/register --loader ts-node/esm' node"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@types/node": "^20.11.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"typescript": "^5.3.3",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=20.0.0"
}
}