This repository was archived by the owner on Jan 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.13 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.13 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "keyvault-gatekeeper",
"version": "0.4.0",
"description": "Manages delegated access to code signing, secrets and notarization credentials on Azure Key Vault.",
"repository": {
"type": "git",
"url": "https://github.com/ToDesktop/keyvault-gatekeeper"
},
"license": "MIT",
"author": {
"name": "Dave Jeffery",
"email": "dave@todesktop.com"
},
"type": "module",
"exports": {
".": {
"types": {
"import": "./lib/client/index.d.ts",
"require": "./lib/client/index.d.cts"
},
"import": "./lib/client/index.js",
"require": "./lib/client/index.cjs"
}
},
"main": "./lib/client/index.js",
"bin": {
"keyvault-gatekeeper": "./lib/cli.js"
},
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"lint:knip": "knip",
"prepare": "husky",
"start": "node --watch --env-file .env lib/index.js",
"start:client": "node --watch --env-file .env lib/client/index.js",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@azure/identity": "^4.5.0",
"@azure/keyvault-secrets": "^4.9.0",
"@commander-js/extra-typings": "^12.1.0",
"axios": "^1.7.7",
"commander": "^12.1.0",
"execa": "^9.5.1",
"slash": "^5.1.0",
"tmp-promise": "^3.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@eslint/js": "^9.14.0",
"@release-it/conventional-changelog": "^9.0.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/eslint-plugin": "^1.1.7",
"console-fail-test": "^0.5.0",
"eslint": "^9.14.0",
"eslint-plugin-n": "^17.12.0",
"husky": "^9.1.6",
"knip": "^5.36.2",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-sh": "^0.14.0",
"release-it": "^17.10.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=18.3.0"
},
"publishConfig": {
"provenance": true
}
}