-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "metamask-extension-provider",
"version": "5.0.0",
"description": "A module for allowing a WebExtension to access the web3 provider from an installed MetaMask instance.",
"main": "index.js",
"type": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildSample": "browserify sample-extension/index.js -o sample-extension/bundle.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/danfinlay/metamask-extension-provider.git"
},
"keywords": [
"MetaMask",
"Ethereum",
"Provider"
],
"author": "Dan Finlay <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danfinlay/metamask-extension-provider/issues"
},
"homepage": "https://github.com/danfinlay/metamask-extension-provider#readme",
"engines": {
"npm": ">=9"
},
"dependencies": {
"@metamask/providers": "^18.0.0",
"detect-browser": "^5.3.0",
"extension-port-stream": "^3.0.0"
},
"devDependencies": {
"@babel/runtime": "^7.24.5",
"@metamask/ethjs": "^0.6.0",
"browserify": "^17.0.0"
}
}