forked from keiyoushi/issue-moderator-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 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
33
34
{
"name": "@keiyoushi/issue-moderator-action",
"version": "2.6.1",
"description": "GitHub action to moderate issues",
"repository": {
"type": "git",
"url": "https://github.com/keiyoushi/issue-moderator-action.git"
},
"license": "MPL-2.0",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write .",
"test": "vitest --run",
"test:integ": "vitest --config vitest.config.integ.ts",
"build": "node esbuild.config.mjs",
"prepare": "pnpm run format && pnpm run test && pnpm run build"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@octokit/webhooks-types": "7.3.2",
"axios": "1.6.7"
},
"devDependencies": {
"@octokit/action": "6.0.7",
"@tsconfig/node20": "20.1.2",
"@types/dedent": "0.7.2",
"@types/node": "20.11.24",
"esbuild": "0.20.1",
"prettier": "3.2.5",
"typescript": "5.3.3",
"vitest": "1.3.1"
}
}