-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.38 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
60
{
"name": "wallet-address-validator-kit",
"version": "0.2.1",
"description": "Validate Bitcoin Ethereum Solana Dogecoin Litecoin and HD wallet blockchain addresses offline with a CLI and JavaScript API.",
"type": "module",
"main": "./src/index.js",
"bin": {
"walletaddrcheck": "./bin/walletaddrcheck.js"
},
"exports": {
".": "./src/index.js",
"./chains": "./src/chains.js"
},
"files": [
"bin",
"src/*.js",
"README.md",
"LICENSE",
"llms.txt"
],
"scripts": {
"test": "node --test test/*.test.js",
"examples": "examples/run-examples.sh"
},
"keywords": [
"wallet-address-validator",
"address-validator",
"bitcoin-address",
"ethereum-address",
"solana-address",
"dogecoin-address",
"litecoin-address",
"bip173",
"bip350",
"eip55",
"bech32",
"base58check",
"hd-wallet",
"crypto-wallet",
"ai-agent-friendly"
],
"author": "devdasx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devdasx/wallet-address-validator-kit.git"
},
"bugs": {
"url": "https://github.com/devdasx/wallet-address-validator-kit/issues"
},
"homepage": "https://devdasx.github.io/wallet-address-validator-kit/",
"engines": {
"node": ">=20"
},
"dependencies": {
"@noble/hashes": "^2.2.0",
"@scure/base": "^2.2.0",
"cashaddrjs": "^0.4.4"
}
}