-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "sshield",
"version": "1.0.0",
"description": "Secure SSH key management with project-based namespaces",
"main": "dist/index.js",
"bin": {
"sshield": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint --ext .ts src/",
"test": "jest",
"prepare": "pnpm run build"
},
"keywords": [
"ssh",
"security",
"key-management",
"cli",
"terminal"
],
"author": "shaik noorullah <shaiknooru247@gmail.com>",
"license": "MIT",
"dependencies": {
"blessed": "^0.1.81",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"expandenv": "^1.0.0",
"figlet": "^1.8.1",
"fs-extra": "^11.3.0",
"gradient-string": "^3.0.0",
"inquirer": "^12.6.0",
"node-notifier": "^10.0.1",
"node-ssh": "^13.2.1",
"ora": "^8.2.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/boxen": "^3.0.5",
"@types/crypto-js": "^4.2.2",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.15.2",
"@types/node-notifier": "^8.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=14.0.0"
}
}