-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "kvault",
"version": "0.2.0",
"description": "CLI for HashiCorp Vault Key/Value V2 secret engines",
"author": "Shahrad Elahi <[email protected]> (https://github.com/shahradelahi)",
"license": "GPL-3.0",
"repository": "github:shahradelahi/vault-cli",
"homepage": "https://github.com/shahradelahi/vault-cli",
"keywords": [
"vault",
"cli",
"kv-v2",
"key-value",
"hashicorp",
"secrets"
],
"type": "module",
"bin": {
"kvault": "dist/cli.js"
},
"files": [
"dist/**"
],
"packageManager": "[email protected]",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "pnpm typecheck && eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"prepublishOnly": "pnpm format:check && pnpm lint && pnpm build"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@litehex/node-vault": "1.0.0-canary.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"execa": "^9.3.0",
"ora": "^8.0.1",
"prompts": "^2.4.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"tsup": "^8.2.2",
"type-fest": "^4.23.0",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}