generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.35 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
48
49
{
"name": "advanced-issue-labeler",
"version": "1.0.0",
"description": "Label GitHub issues based on input",
"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/advanced-issue-labeler.git"
},
"keywords": [
"actions",
"node",
"issues",
"labels"
],
"author": "jamacku@redhat.com",
"license": "MIT",
"packageManager": "yarn@4.5.3",
"type": "module",
"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",
"@probot/octokit-plugin-config": "^3.0.2",
"@total-typescript/ts-reset": "^0.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@vercel/ncc": "^0.38.2",
"@vitest/coverage-v8": "^2.1.2",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
}
}