-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
45
46
47
48
49
{
"name": "salakala",
"bin": {
"salakala": "./dist/cli.js"
},
"version": "0.5.3",
"description": "Generate .env files from various secret providers",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:debug": "vitest run --disable-console-intercept",
"prepare": "npm run build"
},
"homepage": "https://github.com/auth70/salakala",
"repository": "github:auth70/salakala",
"contributors": [
{
"name": "miunau",
"email": "[email protected]",
"url": "https://miunau.com"
}
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.721.0",
"@azure/identity": "^4.5.0",
"@azure/keyvault-secrets": "^4.9.0",
"@commander-js/extra-typings": "^13.0.0",
"@google-cloud/secret-manager": "^5.6.0",
"commander": "^13.0.0",
"dotenv": "^16.4.7",
"inquirer": "^12.3.0",
"node-vault": "^0.10.2"
},
"overrides": {
"whatwg-url": "^14.1.0"
}
}