UNPKG

blockchain-api

Version:

API utilities for interacting with the Exatechl2 blockchain

44 lines (43 loc) 1.13 kB
{ "name": "blockchain-api", "version": "1.1.0", "description": "API utilities for interacting with the Exatechl2 blockchain", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "lint": "eslint src/**/*.ts", "prepublishOnly": "npm run build", "example:list-blocks": "ts-node examples/list-blocks.ts", "example:list-transactions": "ts-node examples/list-transactions.ts", "example:search": "ts-node examples/search-example.ts" }, "keywords": [ "blockchain", "ethereum", "api", "rpc", "Exatechl2" ], "author": "", "license": "MIT", "dependencies": { "ethers": "^5.7.2", "node-fetch": "^2.6.9", "node-json-db": "^2.3.1" }, "devDependencies": { "@types/jest": "^29.5.1", "@types/node": "^18.16.0", "@types/node-fetch": "^2.6.4", "@typescript-eslint/eslint-plugin": "^8.30.1", "@typescript-eslint/parser": "^8.30.1", "eslint": "^8.39.0", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.2", "typescript": "^5.0.4" } }