-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.72 KB
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
{
"name": "@rainbow-me/provider",
"version": "0.2.0",
"engines": {
"node": ">=22.17.0"
},
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist/**/*"
],
"scripts": {
"prepack": "yarn build",
"build": "tsc",
"test": "./scripts/tests.sh",
"lint": "eslint --cache --max-warnings 0",
"typecheck": "tsc --noEmit",
"anvil": "ETH_MAINNET_RPC=$(grep ETH_MAINNET_RPC .env | cut -d '=' -f2) && anvil --fork-url $ETH_MAINNET_RPC",
"anvil:kill": "lsof -i :8545|tail -n +2|awk '{print $2}'|xargs -r kill -s SIGINT",
"changeset": "changeset",
"release": "yarn release:verify-git && yarn release:publish && yarn release:github",
"release:verify-git": "git diff --exit-code && git rev-parse --abbrev-ref HEAD | grep -q main",
"release:publish": "changeset publish --tag latest && git push --follow-tags",
"release:github": "TAG=$(git describe --tags --abbrev=0) && awk '/^## /{if(p++)exit;next}p' CHANGELOG.md | gh release create \"$TAG\" --notes-file -"
},
"module": "dist/index.js",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"anvil": "0.0.6",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"jsdom": "24.0.0",
"prettier": "3.2.4",
"typescript": "5.3.3",
"viem": "2.47.5",
"vitest": "1.6.1"
},
"dependencies": {
"@ethersproject/abstract-provider": "5.7.0",
"@ethersproject/bignumber": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@metamask/eth-sig-util": "7.0.1",
"eventemitter3": "5.0.1"
},
"peerDependencies": {
"viem": "^2.40.3"
},
"packageManager": "yarn@4.2.2"
}