-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 902 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 902 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
{
"name": "setup-sentinel",
"version": "1.0.0",
"description": "A GitHub Action to install a specific version of HashiCorp Sentinel and add it to PATH.",
"keywords": [
"github-actions",
"hashicorp",
"sentinel"
],
"repository": {
"type": "git",
"url": "git@github.com:hashicorp/setup-sentinel.git"
},
"license": "Apache-2.0",
"author": "HashiCorp Compliance Team <info@hashicorp.com>",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build --no-cache",
"fmt": "prettier --write 'src/*.ts'",
"copywrite": "copywrite headers && copywrite license"
},
"dependencies": {
"@actions/core": "^2.0.1",
"@hashicorp/github-actions-core": "github:hashicorp/github-actions-core#v1.0.0"
},
"devDependencies": {
"@types/node": "^22.19.1",
"@types/semver": "^7.7.0",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.9.2"
}
}