UNPKG

@tetherto/wdk-wallet-ton

Version:

A simple package to manage BIP-32 wallets for the ton blockchain.

70 lines (69 loc) 1.62 kB
{ "name": "@tetherto/wdk-wallet-ton", "version": "1.0.0-beta.5", "description": "A simple package to manage BIP-32 wallets for the ton blockchain.", "keywords": [ "wdk", "wallet", "bip-32", "ton" ], "author": "Tether", "license": "Apache-2.0", "repository": { "type": "git", "url": "git://github.com/tetherto/wdk-wallet-ton.git" }, "main": "index.js", "type": "module", "types": "./types", "scripts": { "build:types": "tsc", "lint": "standard", "lint:fix": "standard --fix", "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest", "test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage" }, "dependencies": { "@tetherto/wdk-wallet": "^1.0.0-beta.1", "@ton/crypto": "3.3.0", "@ton/ton": "15.1.0", "bare-node-runtime": "^1.1.4", "bip39": "3.1.0", "micro-key-producer": "0.7.6", "sodium-universal": "5.0.1", "tweetnacl": "1.0.3" }, "devDependencies": { "@ton-community/assets-sdk": "0.0.5", "@ton/sandbox": "0.32.2", "@ton/test-utils": "0.7.0", "cross-env": "7.0.3", "jest": "29.7.0", "standard": "17.1.2", "typescript": "5.8.3" }, "overrides": { "axios": "1.12.2" }, "exports": { ".": { "types": "./types/index.d.ts", "bare": "./bare.js", "default": "./index.js" }, "./package": { "default": "./package.json" } }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "standard": { "ignore": [ "bare.js", "tests/**/*.js" ] } }