-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.23 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
{
"name": "keypair.exe",
"version": "0.0.1",
"description": "Scripts and executables for keypair generation, and both message signing and message verification using the @noble/secp256k1 and @noble/hashes libraries.",
"files": [
"executables/*",
"images/*",
"scripts/*"
],
"scripts": {
"create": "node create.js",
"sign": "node sign.js",
"verify": "node verify.js",
"build-create": "nexe create.js -o _create.exe --build --target windows-x64-16.17.1",
"build-sign": "nexe sign.js -o _sign.exe --build --target windows-x64-16.17.1",
"build-verify": "nexe verify.js -o _verify.exe --build --target windows-x64-16.17.1",
"hash-shell-create": "powershell -Command \"get-FileHash _create.exe\"",
"hash-shell-sign": "powershell -Command \"get-FileHash _sign.exe\"",
"hash-shell-verify": "powershell -Command \"get-FileHash _verify.exe\"",
"hash-bash-create": "bash -c \"shasum -a 256 _create.exe\"",
"hash-bash-sign": "bash -c \"shasum -a 256 _sign.exe\"",
"hash-bash-verify": "bash -c \"shasum -a 256 _verify.exe\""
},
"dependencies": {
"@noble/hashes": "^1.5.0",
"@noble/secp256k1": "^2.1.0"
},
"type": "module",
"license": "GPL-3.0-only"
}