-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "pgp-generate",
"version": "1.0.7-beta",
"author": "Nazarii Borbiuk",
"license": "MIT",
"description": "Simple CLI tool to generate PGP keys pair",
"keywords": [
"cli",
"encryption",
"file",
"generate",
"pgp",
"rsa"
],
"main": "index.min.js",
"bin": {
"pgp-generate": "index.min.js",
"pgpg": "index.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borbiuk/PGP-generate.git"
},
"homepage": "https://github.com/borbiuk/PGP-generate#readme",
"scripts": {
"build": "npx tsc index.ts",
"minify": "uglifyjs index.js -o index.min.js",
"publish": "npm run build && npm run minify && npm publish",
"example:help": "node index.js --help",
"example:print": "node index.js -n Developer -e dev@email.com -p mySecret",
"example:file": "node index.js -n Developer -e dev@email.com -p mySecret -l 3 -f ./examples/test"
},
"dependencies": {
"commander": "12.0.0",
"openpgp": "5.11.1"
},
"devDependencies": {
"@openpgp/web-stream-tools": "0.0.14",
"@types/node": "20.11.27",
"typescript": "5.4.2",
"uglify-js": "3.17.4"
}
}