forked from hashicorp/github-actions-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 948 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 948 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
29
30
31
32
33
34
35
36
37
{
"name": "@hashicorp/github-actions-core",
"version": "1.0.0",
"description": "A library of functions shared between GitHub Actions.",
"main": "./dist/index.js",
"scripts": {
"build": "tsc && ncc build --no-cache",
"fmt": "prettier --write '*.ts'"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git@github.com:hashicorp/github-actions-core.git"
},
"keywords": [
"github-actions"
],
"author": "Kerim Satirli and Jenna Goldstrich",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^3.0.1",
"@hashicorp/js-releases": "^1.7.7",
"axios": "^1.15.2",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}