|
2 | 2 | "name": "@metamask/eth-json-rpc-provider",
|
3 | 3 | "version": "2.2.0",
|
4 | 4 | "description": "Create an Ethereum provider using a JSON-RPC engine or middleware",
|
| 5 | + "keywords": [ |
| 6 | + "MetaMask", |
| 7 | + "Ethereum" |
| 8 | + ], |
| 9 | + "homepage": "https://github.com/MetaMask/core/tree/main/packages/eth-json-rpc-provider#readme", |
| 10 | + "bugs": { |
| 11 | + "url": "https://github.com/MetaMask/core/issues" |
| 12 | + }, |
5 | 13 | "repository": {
|
6 | 14 | "type": "git",
|
7 |
| - "url": "https://github.com/MetaMask/eth-json-rpc-provider.git" |
| 15 | + "url": "https://github.com/MetaMask/core.git" |
8 | 16 | },
|
9 | 17 | "license": "ISC",
|
10 |
| - "main": "dist/index.js", |
11 |
| - "types": "dist/index.d.ts", |
| 18 | + "main": "./dist/index.js", |
| 19 | + "types": "./dist/index.d.ts", |
12 | 20 | "files": [
|
13 | 21 | "dist/"
|
14 | 22 | ],
|
15 | 23 | "scripts": {
|
16 | 24 | "build": "tsc --project tsconfig.build.json",
|
17 | 25 | "build:clean": "rimraf dist && yarn build",
|
18 | 26 | "build:docs": "typedoc",
|
| 27 | + "changelog:validate": "../../scripts/validate-changelog.sh @metamask/eth-json-rpc-provider", |
19 | 28 | "lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:dependencies",
|
20 | 29 | "lint:dependencies": "depcheck",
|
21 | 30 | "lint:eslint": "eslint . --cache --ext js,ts",
|
22 | 31 | "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn lint:dependencies",
|
23 | 32 | "lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
|
24 | 33 | "prepack": "./scripts/prepack.sh",
|
25 |
| - "test": "jest && jest-it-up", |
| 34 | + "publish:preview": "yarn npm publish --tag preview", |
| 35 | + "test": "jest", |
| 36 | + "test:clean": "jest --clearCache", |
26 | 37 | "test:watch": "jest --watch"
|
27 | 38 | },
|
28 | 39 | "dependencies": {
|
29 |
| - "@metamask/json-rpc-engine": "^7.1.0", |
| 40 | + "@metamask/json-rpc-engine": "^7.1.1", |
30 | 41 | "@metamask/safe-event-emitter": "^3.0.0",
|
31 | 42 | "@metamask/utils": "^8.1.0"
|
32 | 43 | },
|
33 | 44 | "devDependencies": {
|
34 | 45 | "@metamask/auto-changelog": "^3.1.0",
|
35 | 46 | "@types/jest": "^27.4.1",
|
36 |
| - "depcheck": "^1.4.3", |
37 | 47 | "deepmerge": "^4.2.2",
|
| 48 | + "depcheck": "^1.4.3", |
38 | 49 | "jest": "^27.5.1",
|
39 | 50 | "jest-it-up": "^2.0.2",
|
40 | 51 | "ts-jest": "^27.1.4",
|
41 | 52 | "typedoc": "^0.24.8"
|
42 | 53 | },
|
43 | 54 | "packageManager": "[email protected]",
|
44 | 55 | "engines": {
|
45 |
| - "node": "^16.20 || ^18.16 || >=20" |
| 56 | + "node": ">=16.0.0" |
46 | 57 | },
|
47 | 58 | "publishConfig": {
|
48 | 59 | "access": "public",
|
|
0 commit comments