-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.33 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "wallet-key-validator-kit",
"version": "0.2.0",
"description": "Validate BIP39 mnemonics, private keys, WIF keys, and xpub/xprv/ypub/yprv/zpub/zprv HD wallet extended keys for Bitcoin, Ethereum, Solana, Dogecoin, Litecoin, and more.",
"type": "module",
"main": "./src/index.js",
"bin": {
"walletkeycheck": "./bin/walletkeycheck.js"
},
"exports": {
".": "./src/index.js",
"./chains": "./src/chains.js",
"./base58": "./src/base58.js"
},
"files": [
"src/*.js",
"bin",
"README.md",
"LICENSE",
"llms.txt"
],
"scripts": {
"test": "node --test test/*.test.js",
"examples": "examples/run-examples.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devdasx/wallet-key-validator-kit.git"
},
"keywords": [
"mnemonic validator",
"private key validator",
"wif validator",
"xpub validator",
"zpub validator",
"xprv validator",
"zprv validator",
"bip39",
"bip32",
"slip132",
"bitcoin",
"ethereum",
"solana",
"dogecoin",
"litecoin",
"hd wallet",
"ai-agent-friendly"
],
"author": "ROYO STUDIOS <royostudios13@gmail.com>",
"license": "MIT",
"dependencies": {
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@scure/bip39": "^2.0.1"
},
"engines": {
"node": ">=20"
}
}