-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 758 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 758 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",
"version": "1.3.0",
"author": "Ben Coleman",
"license": "MIT",
"description": "Trigger running GitHub Actions workflows",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --outfile=dist/index.js",
"lint": "eslint src/ --ext .ts && prettier --check src/",
"lint-fix": "eslint src/ --fix",
"format": "prettier --write src/"
},
"keywords": [
"github",
"actions"
],
"devDependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@eslint/js": "^10.0.1",
"esbuild": "^0.25.0",
"eslint": "^10.0.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}