forked from the-actions-org/workflow-dispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 694 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 694 Bytes
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
{
"name": "workflow-dispatch-and-wait",
"version": "4.0.0",
"description": "Trigger running GitHub Actions workflows and wait for result",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist",
"lint": "eslint src/",
"lint-fix": "eslint src/ --fix"
},
"keywords": [
"github",
"actions",
"worflow",
"trigger"
],
"author": "Aurélien Baudet",
"license": "MIT",
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@typescript-eslint/parser": "7.7.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.57.0",
"typescript": "5.4.5"
}
}