-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
40
41
42
43
44
{
"name": "@figedi/sops",
"version": "1.1.2",
"description": "Sops decrypting library",
"contributors": [],
"homepage": "https://github.com/figedi/sops",
"scripts": {
"specs:ci": "_mocha 'dist/**/*.spec.js'",
"specs": "vitest --run src",
"lint": "biome check ./src biome.json",
"lint:fix": "biome check --write ./src biome.json",
"build": "rm -rf dist && tsup",
"githooks:sync": "lefthook install"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"engines": {
"node": ">=20.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/figedi/sops.git"
},
"keywords": [],
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@google-cloud/kms": "^4.5.0",
"@types/node": "^22.7.6",
"lefthook": "^1.7.18",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"es-toolkit": "^1.25.2",
"yaml": "^2.6.0"
},
"optionalDependencies": {
"@google-cloud/kms": "^4.0.1"
}
}