-
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply
constraints
fixes to eth-json-rpc-provider
package.json file
- Loading branch information
Showing
2 changed files
with
48 additions
and
1,015 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,26 +2,37 @@ | |
"name": "@metamask/eth-json-rpc-provider", | ||
"version": "2.1.0", | ||
"description": "Create an Ethereum provider using a JSON-RPC engine or middleware", | ||
"keywords": [ | ||
"MetaMask", | ||
"Ethereum" | ||
], | ||
"homepage": "https://github.com/MetaMask/core/tree/main/packages/eth-json-rpc-provider#readme", | ||
"bugs": { | ||
"url": "https://github.com/MetaMask/core/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/MetaMask/eth-json-rpc-provider.git" | ||
"url": "https://github.com/MetaMask/core.git" | ||
}, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"license": "MIT", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist/" | ||
], | ||
"scripts": { | ||
"build": "tsc --project tsconfig.build.json", | ||
"build:clean": "rimraf dist && yarn build", | ||
"build:docs": "typedoc", | ||
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/eth-json-rpc-provider", | ||
"lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:dependencies", | ||
"lint:dependencies": "depcheck", | ||
"lint:eslint": "eslint . --cache --ext js,ts", | ||
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn lint:dependencies", | ||
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern", | ||
"prepack": "./scripts/prepack.sh", | ||
"test": "jest && jest-it-up", | ||
"publish:preview": "yarn npm publish --tag preview", | ||
"test": "jest", | ||
"test:watch": "jest --watch" | ||
}, | ||
"dependencies": { | ||
|
@@ -40,7 +51,7 @@ | |
"@types/node": "^16.18.24", | ||
"@typescript-eslint/eslint-plugin": "^5.30.7", | ||
"@typescript-eslint/parser": "^5.30.7", | ||
"deepmerge": "^4.3.1", | ||
"deepmerge": "^4.2.2", | ||
"depcheck": "^1.4.3", | ||
"eslint": "^8.44.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
|
@@ -63,7 +74,7 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": "^16.20 || ^18.16 || >=20" | ||
"node": ">=16.0.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public", | ||
|
Oops, something went wrong.