-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 981 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 981 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
38
39
40
41
42
{
"name": "setup-sops",
"description": "Setup SOPS in GitHub Actions",
"scripts": {
"build": "unbuild",
"prepackage": "bun run build",
"package": "ncc build build/index.mjs -o dist",
"format": "biome format --write .",
"lint": "biome check --apply-unsafe .",
"check": "biome check . --apply-unsafe",
"postinstall": "lefthook install"
},
"keywords": [
"getsops",
"sops",
"github-action"
],
"author": {
"name": "Nicolas Hedger",
"email": "nicolas@hedger.ch"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"ts-dedent": "^2.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@octokit/auth-action": "6.0.2",
"@octokit/request-error": "7.1.0",
"@octokit/rest": "22.0.1",
"@octokit/types": "16.0.0",
"@types/node": "24.12.0",
"@types/semver": "7.7.1",
"@vercel/ncc": "0.38.4",
"lefthook": "2.1.4",
"renovate": "43.76.4",
"semver": "7.7.4",
"unbuild": "3.6.1"
}
}