generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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": "devel-freezer",
"version": "1.0.0",
"description": "Comment on newly created pull requests, when project is in development freeze",
"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 run build && yarn run format && yarn run package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/devel-freezer.git"
},
"keywords": [
"actions",
"node",
"development-tool",
"development-freeze"
],
"author": "jamacku@redhat.com",
"license": "MIT",
"type": "module",
"packageManager": "yarn@4.5.3",
"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",
"issue-metadata": "0.2.3",
"zod": "3.23.8"
},
"devDependencies": {
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "22.10.5",
"@vercel/ncc": "0.38.3",
"@vitest/coverage-v8": "2.1.8",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}