forked from cawabunga/headless-web3-provider
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "headless-web3-provider",
"version": "0.2.4",
"description": "Headless Web3 Provider useful in e2e testing",
"author": "Emil Ibatullin",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/main.cjs",
"module": "dist/module.mjs",
"types": "dist/types.d.ts",
"sideEffects": false,
"files": [
"dist/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cawabunga/headless-web3-provider.git"
},
"bugs": {
"url": "https://github.com/cawabunga/headless-web3-provider/issues"
},
"homepage": "https://github.com/cawabunga/headless-web3-provider#readme",
"scripts": {
"test": "playwright test",
"watch": "parcel watch",
"build": "parcel build --no-optimize",
"prettify": "prettier --write '**/*.ts'"
},
"dependencies": {
"@metamask/eth-sig-util": "^6.0.0",
"@metamask/json-rpc-engine": "^8.0.1",
"ethers": "^5.7.1",
"rxjs": "^7.5.7"
},
"devDependencies": {
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@playwright/test": "^1.26.1",
"@types/node": "^16.0.0",
"generic-pool": "^3.9.0",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"tsx": "^3.12.10",
"typescript": "~4.7.0"
}
}