-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "headless-web3-provider",
"version": "0.3.2",
"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'",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"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",
"clean-package": "^2.2.0",
"generic-pool": "^3.9.0",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"tsx": "^3.12.10",
"typescript": "~4.7.0"
},
"clean-package": {
"indent": 2,
"remove": [
"source",
"scripts",
"devDependencies",
"clean-package"
]
}
}