@bajetech/digitalbits-wallet-sdk
Version:
A library to make it easier to write wallets that interact with the DigitalBits blockchain
90 lines (89 loc) • 2.49 kB
JSON
{
"name": "@bajetech/digitalbits-wallet-sdk",
"version": "0.0.4",
"description": "A library to make it easier to write wallets that interact with the DigitalBits blockchain",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"CHANGELOG.md",
"dist/**",
"src/**",
"scrypt-async.d.ts"
],
"repository": "git@github.com:bajetech/js-digitalbits-wallets.git",
"author": "BajeTech <hello@bajetech.com>",
"license": "Apache-2.0",
"scripts": {
"prepublishOnly": "shx rm -rf dist/ && yarn build && yarn build:commonjs",
"build": "tsc --project tsconfig.json",
"build:commonjs": "webpack --mode production",
"lint": "eslint --ext .ts ./src",
"lintAndTest": "yarn lint && yarn test:ci",
"prettier": "prettier --write '**/*.{js,ts,md}'",
"test": "jest --watch",
"test:ci": "jest"
},
"keywords": [
"blockchain",
"digitalbits",
"wallets"
],
"resolutions": {
"xdb-digitalbits-sdk/axios": "0.22.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node-localstorage": "^1.3.0",
"@types/sinon": "^10.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7",
"jest-fetch-mock": "^3.0.3",
"jest-mock-random": "^1.1.1",
"node-localstorage": "^2.2.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"prettier": "^2.5.1",
"regenerator-runtime": "^0.13.9",
"shx": "^0.3.4",
"sinon": "^12.0.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@bajetech/astrax-api": "^1.0.5",
"@stablelib/base64": "^1.0.1",
"bignumber.js": "^9.0.2",
"lodash": "^4.17.21",
"scrypt-async": "^2.0.1",
"tslib": "^2.3.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"xdb-digitalbits-sdk": "^8.2.2"
},
"engines": {
"node": ">=14.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}