-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 977 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
35
36
37
38
{
"name": "workflow-check",
"version": "2.0.1",
"description": "A Github Action that validates other workflow statuses on given runner",
"main": "dist/index.js",
"scripts": {
"build": "ncc build -o dist src/index.ts",
"format": "prettier --write **/*.ts",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronymeyer/workflow-check.git"
},
"keywords": [
"actions",
"node"
],
"author": "Rony Meyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronymeyer/workflow-check/issues"
},
"homepage": "https://github.com/ronymeyer/workflow-check/#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@octokit/auth-action": "^4.0.1",
"@octokit/rest": "^20.1.1"
},
"devDependencies": {
"@octokit/openapi-types": "^22.2.0",
"@types/node": "^22.10.7",
"@vercel/ncc": "^0",
"prettier": "^3",
"release-it": "*",
"typescript": "^5"
}
}