-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@venly/web3-provider",
"version": "3.6.0-develop.0",
"description": "Venly enabled Web3 Provider for the web",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "umd/index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"clean": "rm -rf dist umd",
"build-ts": "tsc",
"build-js": "npx webpack",
"build": "npm run clean && npm run build-ts && npm run build-js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Venly/web3-arkane-provider"
},
"keywords": [
"ethereum",
"hd",
"wallet",
"mnemonic",
"provider",
"arkane",
"venly",
"venly.io",
"truffle",
"blockchain",
"crypto"
],
"author": "Davy Van Roy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Venly/web3-arkane-provider/issues"
},
"homepage": "https://venly.io",
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@metamask/eth-json-rpc-middleware": "^12.0.0",
"@metamask/eth-json-rpc-provider": "^2.1.0",
"@metamask/json-rpc-engine": "^7.1.1",
"@metamask/rpc-errors": "^6.0.0",
"@metamask/utils": "^8.1.0",
"@venly/connect": "^2.4.1",
"eth-block-tracker": "^8.0.0",
"eth-json-rpc-filters": "^6.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"https-browserify": "^1.0.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.5.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"url": "^0.11.3",
"util": "^0.12.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"files": [
"dist",
"umd"
]
}