-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 987 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 987 Bytes
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
{
"name": "bip39-to-ssh",
"version": "1.0.0",
"description": "Generate and manage SSH keys from BIP39 seed phrases with support for multiple derivation paths and optional passphrase protection",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js"
},
"keywords": [
"bip39",
"ssh",
"ed25519",
"key-generation",
"cryptography",
"security"
],
"author": "seedfourtytwo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seedfourtytwo/BIP39toSSH.git"
},
"bugs": {
"url": "https://github.com/seedfourtytwo/BIP39toSSH/issues"
},
"homepage": "https://github.com/seedfourtytwo/BIP39toSSH#readme",
"dependencies": {
"bip39": "^3.1.0",
"body-parser": "^1.20.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"nodemon": "^3.1.0"
},
"engines": {
"node": ">=14.0.0"
}
}