forked from seedhodler/shamir
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "shamir39-cli",
"version": "1.0.0",
"description": "Shamir Secret Sharing built for BIP39 Mnemonics as command line utility. Alternative implementation to https://github.com/iancoleman/shamir39 ",
"main": "index.js",
"bin": "dist/shamir39.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.prod.js",
"pkg": "pkg . --compress Brotli",
"devbuild": "webpack --config webpack.config.dev.js"
},
"author": "",
"license": "SEE LICENSE IN LICENSE",
"pkg": {
"scripts": "dist/*.js",
"assets": [],
"targets": [
"node18-win-x64",
"node18-linux-x64",
"node18-macos-x64",
"node18-linux-arm64",
"node18-macos-arm64"
],
"outputPath": "dist"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"pkg": "^5.8.1",
"terser-webpack-plugin": "^4.2.3",
"upx": "^1.0.6",
"webpack": "^5.97.1",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bip39": "^3.0.2",
"chalk": "^4.1.1",
"command-line-args": "^5.2.0",
"fast-levenshtein": "^2.0.6",
"inquirer": "^8.2.0",
"unorm": "^1.6.0"
}
}