-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.12 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
{
"name": "kss-cli",
"description": "Keep Secrets Safe - Command Line Interface",
"version": "1.0.15",
"main": "main.js",
"bin": {
"kss": "./main.js"
},
"files": [
"main.js"
],
"devDependencies": {
"@types/node": "^20.4.2",
"esbuild": "^0.18.16",
"nodemon": "^3.0.1",
"typescript": "^5.1.6"
},
"scripts": {
"compile": "esbuild ./src/main.ts --platform=node --target=node20 --packages=external --outdir=./ --bundle",
"watch": "tsc --watch",
"serve": "nodemon ./main.js"
},
"dependencies": {
"chalk": "^4.1.2",
"enquirer": "^2.3.6",
"keytar": "^7.9.0",
"macos-touchid": "^1.0.3",
"minisearch": "^6.1.0",
"node-clipboardy": "^1.0.3",
"node-encryption": "^1.0.2",
"yargs": "^17.7.2"
},
"keywords": [
"cli",
"secrets",
"passwords",
"keychain",
"encryption",
"mac",
"osx",
"manager",
"answer",
"ask",
"terminal",
"nodejs",
"stdin",
"stdout",
"command",
"command-line"
],
"repository": {
"type": "git",
"url": "https://github.com/BakhadyrovF/kss-cli"
},
"license": "MIT"
}