-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 962 Bytes
/
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
{
"name": "rsa-cli",
"description": "A command line tool for RSA encryption and decryption.",
"version": "1.0.2",
"main": "./src/modules.js",
"license": "MIT",
"keywords": [
"rsa",
"cryptography",
"encryption",
"decryption",
"cli"
],
"bin": {
"rsa": "./src/main.js"
},
"pkg": {
"scripts": "src/**/*.js",
"bin": "src",
"targets": [
"node14-alpine-arm64",
"node14-alpine-x64",
"node14-linux-arm64",
"node14-linux-x64",
"node14-linuxstatic-arm64",
"node14-linuxstatic-x64",
"node14-macos-arm64",
"node14-macos-x64",
"node14-win-arm64",
"node14-win-x64"
],
"outputPath": "dist"
},
"scripts": {
"start": "node ./src/main.js",
"build": "pkg . --public-packages \"*\" --compress GZip"
},
"dependencies": {
"chalk": "^4.1.1",
"inquirer": "^8.1.2",
"minimist": "^1.2.5",
"pkg": "^5.3.0",
"sjcl": "^1.0.8"
}
}