-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 KB
/
package.json
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
{
"name": "web3-ronin-provider",
"version": "1.0.15",
"types": "./dist/index.d.ts",
"main": "index.js",
"scripts": {
"gen-md": "typedoc --cleanOutputDir true --plugin typedoc-plugin-markdown --out docs/md src --hideGenerator",
"gen-html": "typedoc --cleanOutputDir true --out docs/html src --hideGenerator",
"prepublishOnly": "tsc -b",
"test": "jest"
},
"exports": {
".": "./dist/index.js",
"./web3-ronin-consts": "./dist/web3-ronin-consts.js",
"./web3-RoninJsonRpcProvider": "./dist/web3-RoninJsonRpcProvider.js",
"./web3-RoninSkynetProvider": "./dist/web3-RoninSkynetProvider.js",
"./web3-RoninSkynetRESTProvider": "./dist/web3-RoninSkynetRESTProvider.js"
},
"keywords": [
"Ronin",
"Web3",
"Provider",
"Skynet",
"API",
"JSON RPC",
"RPC"
],
"author": "chuacw",
"license": "ISC",
"bugs": {
"url": "https://github.com/chuacw/web3-ronin-provider/issues"
},
"homepage": "https://chuacw.github.io/web3-ronin-provider/html/index.html",
"description": "A Ronin REST, JSON RPC, and Skynet Web3 provider",
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"axios": "^1.7.7",
"axios-http2-adapter": "^1.0.2",
"delphirtl": "^1.1.21",
"ethers": "5.7",
"http2-wrapper": "^2.2.1"
},
"files": [
"dist/**/*",
"docs/**/*",
"examples/**/*"
],
"devDependencies": {
"@types/jest": "^29.5.13",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.3"
}
}