generated from redhat-plumbers-in-action/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.33 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
41
42
43
44
45
46
47
{
"name": "issue-commentator",
"version": "1.0.0",
"description": "GitHub Action that creates and updates status comments on issues and pull requests",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn && yarn run build && yarn run format && yarn run package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/issue-commentator.git"
},
"keywords": [
"actions",
"comments",
"github"
],
"author": "[email protected]",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@octokit/core": "6.1.2",
"@octokit/plugin-throttling": "9.3.2",
"@octokit/rest": "21.0.2",
"@total-typescript/ts-reset": "0.6.1",
"issue-metadata": "0.2.3",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "22.10.5",
"@vercel/ncc": "0.38.3",
"@vitest/coverage-v8": "2.1.8",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vitest": "2.1.8"
}
}