UNPKG

@conflux-dev/hdwallet

Version:
41 lines (40 loc) 1.05 kB
{ "name": "@conflux-dev/hdwallet", "version": "0.1.2", "description": "TypeScript Conflux Software Development Kit", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", "license": "LGPL-3.0", "repository": "https://github.com/Conflux-Chain/ts-conflux-sdk.git", "exports": { ".": { "import": "./dist/mjs/index.js", "require": "./dist/cjs/index.js" } }, "scripts": { "test": "jest", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh" }, "files": [ "dist/**/*" ], "keywords": ["Conflux"], "author": "pan.wang@confluxnetwork.org", "devDependencies": { "@types/hdkey": "^2.0.1", "@types/jest": "^28.1.1", "jest": "^28.1.1", "prettier": "^2.6.2", "ts-jest": "^28.0.5", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.7.3" }, "dependencies": { "bip39": "^3.0.4", "hdkey": "^2.0.1" } }