-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.25 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
{
"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 <[email protected]>",
"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": "1.11.1",
"@actions/tool-cache": "2.0.1",
"@octokit/plugin-throttling": "9.4.0",
"@octokit/rest": "21.1.0",
"esbuild": "0.24.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "22.10.5",
"semantic-release": "24.2.1",
"semantic-release-major-tag": "0.3.2",
"tsx": "4.19.2",
"typescript": "5.7.3"
}
}