UNPKG

eip155-chains

Version:

Aggregate all eip155 chains from multiple sources in one place.

85 lines 2.29 kB
{ "name": "eip155-chains", "version": "0.1.3", "description": "Aggregate all eip155 chains from multiple sources in one place.", "main": "./dist/index.js", "types": "./dist/index.d.ts", "publishConfig": { "access": "public" }, "files": [ "dist/**/*" ], "author": { "name": "ivanzz", "email": "ivanzz.eth@gmail.com", "url": "https://github.com/ivanzzeth/eip155-chains" }, "keywords": [ "eip155", "evm", "chains", "eth", "chainlist", "rpc", "rpc nodes", "rpc list" ], "homepage": "https://github.com/ivanzzeth/eip155-chains", "repository": { "type": "git", "url": "git+https://github.com/ivanzzeth/eip155-chains.git" }, "bugs": { "url": "https://github.com/ivanzzeth/eip155-chains/issues" }, "license": "Apache-2.0", "engines": { "node": ">= 18" }, "volta": { "node": "20.12.2" }, "dependencies": { "@ethersproject/providers": "^5.7.2", "axios": "^1.6.8", "eth-chains": "^2.0.0", "tslib": "~2.6", "viem": "^2.14.1" }, "devDependencies": { "@types/jest": "~29.5", "@types/node": "~20", "@types/sinon": "^17.0.3", "@typescript-eslint/eslint-plugin": "~7.6", "@typescript-eslint/parser": "~7.6", "eslint": "~8.56", "eslint-config-prettier": "~9.1", "eslint-plugin-jest": "~28.2", "jest": "~29.7", "node-localstorage": "^3.0.5", "prettier": "~3.2", "rimraf": "~5.0", "sinon": "^18.0.0", "ts-api-utils": "~1.3", "ts-jest": "~29.1", "tsup": "^8.0.2", "typedoc": "^0.25.13", "typedoc-plugin-markdown": "^4.0.2", "typescript": "~5.4", "unikvstore": "^2.0.4" }, "scripts": { "start": "node dist/index.js", "clean": "rimraf coverage build tmp", "prebuild": "npm run lint", "build": "tsup src/index.ts --format cjs --dts --shims --minify --tsconfig tsconfig.json", "build:docs": "typedoc --out docs src --plugin typedoc-plugin-markdown", "build:release": "npm run clean && npm run build && npm run build:docs", "prettier": "prettier --config .prettierrc --write .", "lint": "eslint . --ext .ts --ext .mts", "test": "npm run clean && jest --coverage --detectOpenHandles", "prepublish": "npm run build", "test:watch": "jest --watch" } }