-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@rpcnode/sdk",
"version": "0.1.0",
"description": "Official TypeScript SDK for the RpcNode Public API: dedicated fullnode RPC endpoints (Ethereum, Solana, Bitcoin, Tron, BNB Chain, Polygon, Arbitrum, Optimism, Base, and more), HMAC-signed merchant HTTP, address watch webhooks, and crypto payments.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rpcnode/api-sdk-typescript.git"
},
"homepage": "https://api.rpcnode.dev",
"bugs": {
"url": "https://github.com/rpcnode/api-sdk-typescript/issues"
},
"keywords": [
"rpcnode",
"rpc",
"json-rpc",
"fullnode",
"full-node",
"archive-node",
"blockchain-node",
"crypto-node",
"web3",
"blockchain",
"cryptocurrency",
"rpc-endpoint",
"dedicated-node",
"ethereum",
"geth",
"erigon",
"solana",
"bitcoin",
"tron",
"bsc",
"bnb-chain",
"polygon",
"matic",
"arbitrum",
"optimism",
"base",
"hyperliquid",
"xrpl",
"xrp",
"dogecoin",
"cardano",
"sui",
"stellar",
"hedera",
"litecoin",
"dash",
"bitcoin-cash",
"aptos",
"polkadot",
"ethereum-classic",
"shibarium",
"hmac",
"merchant-api",
"payments",
"address-watch",
"webhook"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.13.10",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}