UNPKG

@onekeyfe/blockchain-link

Version:

High-level javascript interface for blockchain communication

68 lines (67 loc) 2.48 kB
{ "name": "@onekeyfe/blockchain-link", "version": "1.0.19", "author": "OneKey <hi@onekey.so>", "homepage": "https://github.com/OneKeyHQ/OneKey-Desktop/packages/blockchain-link", "description": "High-level javascript interface for blockchain communication", "license": "SEE LICENSE IN LICENSE.md", "repository": { "type": "git", "url": "git://github.com:OneKeyHQ/OneKey-Desktop.git" }, "bugs": { "url": "https://github.com/OneKeyHQ/OneKey-Desktop/issues" }, "keywords": [ "OneKey", "blockchain", "blockbook", "javascript" ], "main": "./lib/index.js", "files": [ "lib/", "build/" ], "types": "lib/index.d.ts", "typings": "lib/index.d.ts", "browser": { "ws": "./lib/utils/ws.js" }, "scripts": { "dev": "npx webpack-dev-server --config ./webpack/dev.babel.js --mode development", "build:lib": "yarn build && yarn build:workers", "build:workers": "rimraf build && yarn build:workers-web && yarn build:workers-node && yarn build:workers-module", "build:workers-web": "webpack --config ./webpack/workers.web.babel.js --mode production", "build:workers-node": "webpack --config ./webpack/workers.node.babel.js --mode production", "build:workers-module": "webpack --config ./webpack/workers.module.babel.js --mode production", "lint": "eslint '**/*{.ts,.tsx}'", "test:unit": "jest --verbose -c jest.config.unit.js", "test:integration": "jest -c jest.config.integration.js", "build": "rimraf lib && tsc --p ./tsconfig.lib.json && tsc --p ./tsconfig.workers.json", "type-check": "tsc --project tsconfig.json" }, "devDependencies": { "@babel/register": "^7.12.1", "@babel/runtime": "^7.12.5", "babel-eslint": "^10.1.0", "babel-loader": "^8.2.1", "eslint-config-airbnb-base": "^14.2.1", "eslint-loader": "^4.0.2", "eslint-plugin-jest": "^24.1.3", "html-webpack-plugin": "^4.5.0", "ts-loader": "^8.0.14", "webpack": "^4.44.2", "webpack-cli": "3.3.12", "webpack-dev-server": "3.11.0", "worker-loader": "^3.0.7" }, "dependencies": { "bignumber.js": "^9.0.1", "es6-promise": "^4.2.8", "events": "^3.2.0", "ripple-lib": "1.8.2", "tiny-worker": "^2.3.0", "ws": "^7.4.0" } }