-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.97 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
{
"name": "manup-cli",
"version": "0.2.0",
"description": "Official CLI for ManUp Secrets Vault (https://github.com/Amanbig/ManUp) — Manage, synchronize, and inject environment secrets seamlessly across projects.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"manup": "./bin/manup.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run format:check && npm run lint && npm run typecheck && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Amanbig/manup-cli.git"
},
"keywords": [
"manup",
"manup-cli",
"secrets",
"secrets-manager",
"secrets-vault",
"vault",
"vault-cli",
"environment-variables",
"env-vars",
"dotenv",
"dotenv-cli",
"config-management",
"self-hosted-vault",
"infisical",
"infisical-alternative",
"doppler",
"doppler-alternative",
"hashicorp-vault",
"developer-tools",
"security"
],
"author": "Amanpreet <amanpreetsinghjhiwant@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amanbig/manup-cli/issues"
},
"homepage": "https://github.com/Amanbig/manup-cli#readme",
"dependencies": {
"@clack/prompts": "^0.9.1",
"axios": "^1.8.1",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"conf": "^13.1.0",
"dotenv": "^16.4.7",
"execa": "^9.6.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}