-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "wait-other-jobs",
"version": "1.0.0",
"description": "",
"main": "lib/main.js",
"engines": {
"node": "20.x"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"prebuild": "tsx scripts/rmrf.ts lib dist",
"build": "tsx scripts/build.ts",
"test": "tsx scripts/run_tests.ts",
"typecheck": "tsc",
"repl": "tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kachick/wait-other-jobs.git"
},
"keywords": [],
"author": "Kenichi Kamiya <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^6.1.2",
"@octokit/graphql-schema": "^15.25.0",
"@octokit/plugin-paginate-graphql": "^5.2.4",
"ansi-styles": "^6.2.1",
"temporal-polyfill": "^0.2.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.17.6",
"esbuild": "0.24.0",
"recheck": "^4.4.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}