mnemonic-keyring
Version:
Mnemonic Keyring for secp256k1 and ed25519
72 lines (71 loc) • 1.68 kB
JSON
{
"name": "mnemonic-keyring",
"description": "Mnemonic Keyring for secp256k1 and ed25519",
"version": "1.4.0",
"author": "Pedro Gomes <github.com/pedrouid>",
"license": "MIT",
"keywords": [
"keys",
"keyring",
"keypair",
"secp256k1",
"ed25519",
"privatekey",
"publickey",
"wallet",
"crypto",
"cryptocurrency"
],
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"unpkg": "dist/umd/index.min.js",
"homepage": "https://github.com/pedrouid/mnemonic-keyring",
"repository": {
"type": "git",
"url": "git+https://github.com/pedrouid/mnemonic-keyring.git"
},
"bugs": {
"url": "https://github.com/pedrouid/mnemonic-keyring/issues"
},
"scripts": {
"start": "tsdx watch",
"clean": "rm -rf dist",
"build:cjs": "./node_modules/.bin/tsc -p tsconfig.cjs.json",
"build:umd": "webpack",
"build": "yarn clean && yarn build:cjs && yarn build:umd",
"test": "tsdx test ./test",
"lint": "tsdx lint src test",
"prepare": "yarn lint && yarn build && yarn test"
},
"devDependencies": {
"@types/jest": "25.1.1",
"@types/node": "13.7.0",
"husky": "4.2.1",
"tsdx": "0.12.3",
"tslib": "1.10.0",
"typescript": "3.7.5",
"webpack": "4.41.6",
"webpack-cli": "3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@pedrouid/iso-random": "^1.1.0",
"bcrypto": "^5.4.0",
"bip32": "^2.0.6",
"bip39": "^3.0.3",
"keyvaluestorage": "^0.7.1"
}
}