UNPKG

@chorus-one/signer-local

Version:

Local signer for Chorus One SDK that utilizes a BIP39 mnemonic for signing operations

41 lines (40 loc) 1.15 kB
{ "name": "@chorus-one/signer-local", "version": "1.1.0", "description": "Local signer for Chorus One SDK that utilizes a BIP39 mnemonic for signing operations", "scripts": { "build": "rm -fr dist/* && tsc -p tsconfig.mjs.json --outDir dist/mjs && tsc -p tsconfig.cjs.json --outDir dist/cjs && bash ../../scripts/fix-package-json" }, "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", "types": "dist/mjs/index.d.ts", "exports": { ".": { "import": "./dist/mjs/index.js", "require": "./dist/cjs/index.js", "types": "./dist/mjs/index.d.ts" } }, "repository": { "type": "git", "url": "git+https://github.com/ChorusOne/chorus-one-sdk.git", "directory": "packages/signer-local" }, "homepage": "https://chorus-one.gitbook.io/sdk", "keywords": [ "chorus-one", "sdk", "signer", "local" ], "author": "Chrous One AG", "license": "Apache-2.0", "dependencies": { "@chorus-one/signer": "^1.0.0", "@chorus-one/utils": "^1.0.0", "@noble/curves": "^1.4.2", "@scure/bip32": "^1.4.0", "bip39": "^3.1.0", "ed25519-hd-key": "^1.3.0" } }