UNPKG

charms-wallet-js

Version:

Professional Bitcoin wallet library for Charms ecosystem using @scure stack

73 lines 2.08 kB
{ "name": "charms-wallet-js", "version": "1.0.0", "description": "Professional Bitcoin wallet library for Charms ecosystem using @scure stack", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "tests", "examples", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/CharmsDev/charms-wallet-js.git" }, "bugs": { "url": "https://github.com/CharmsDev/charms-wallet-js/issues" }, "homepage": "https://github.com/CharmsDev/charms-wallet-js#readme", "publishConfig": { "access": "public" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "prepare": "npm run build", "test": "npm run build && node tests/run-all.js", "test:basic": "npm run build && node tests/basic.test.js", "test:wallet": "npm run build && node tests/wallet.test.js", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "docs": "typedoc src/index.ts", "example:basic": "ts-node examples/basic-usage.ts" }, "keywords": [ "bitcoin", "wallet", "charms", "taproot", "psbt", "bip39", "bip32", "scure", "cryptocurrency", "blockchain" ], "author": "Charms Development Team", "license": "MIT", "dependencies": { "@scure/btc-signer": "^1.3.1", "@scure/bip39": "^1.2.1", "@scure/bip32": "^1.3.2", "@scure/base": "^1.1.1", "@noble/hashes": "^1.3.1", "@noble/secp256k1": "^2.0.0" }, "devDependencies": { "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.0.0", "ts-jest": "^29.0.0", "ts-node": "^10.9.0", "typedoc": "^0.25.0", "typescript": "^5.0.0" }, "engines": { "node": ">=16.0.0" } }