-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.29 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.29 KB
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
{
"name": "install-github-release-binary",
"version": "1.0.0",
"private": true,
"description": "GitHub Action to install a binary from a GitHub Release",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/EricCrosson/install-github-release-binary.git"
},
"author": "Eric Crosson <eric.s.crosson@utexas.edu>",
"license": "ISC",
"bugs": {
"url": "https://github.com/EricCrosson/install-github-release-binary/issues"
},
"homepage": "https://github.com/EricCrosson/install-github-release-binary#readme",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node16 --outfile=dist/index.js",
"test": "node --import tsx --test test/test-*",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "2.0.3",
"@actions/tool-cache": "2.0.2",
"@octokit/plugin-throttling": "11.0.3",
"@octokit/rest": "22.0.1",
"@octokit/plugin-retry": "8.1.0",
"esbuild": "0.27.4"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@types/node": "24.12.0",
"semantic-release": "25.0.3",
"semantic-release-major-tag": "0.3.2",
"tsx": "4.21.0",
"typescript": "5.9.3"
}
}