-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 913 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 913 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
{
"name": "@smarttokenlabs/waterfall-rpc",
"version": "0.9.4",
"description": "A universal RPC provider with waterfall fallback mechanism for Ethereum networks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"ethereum",
"rpc",
"provider",
"fallback",
"ethers",
"web3"
],
"author": "James Brown <j@smarttokenlabs.com>",
"license": "MIT",
"dependencies": {
"ethers": "^6.13.5"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"typescript": "^5.8.3"
}
}