Skip to content

Commit

Permalink
Apply constraints fixes to eth-json-rpc-provider package.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
MajorLift committed Sep 27, 2023
1 parent 7b78937 commit 8175a45
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1,015 deletions.
23 changes: 17 additions & 6 deletions packages/eth-json-rpc-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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",
Expand All @@ -63,7 +74,7 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^16.20 || ^18.16 || >=20"
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
Loading

0 comments on commit 8175a45

Please sign in to comment.