-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 925 Bytes
/
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
{
"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": "[email protected]:hashicorp/github-actions-core.git"
},
"keywords": [
"github-actions"
],
"author": "Kerim Satirli and Jenna Goldstrich",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@hashicorp/js-releases": "^1.7.2",
"semver": "^7.6.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"@types/node": "^22.0.0",
"@types/semver": "^7.5.8",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}