nexa-wallet-sdk
Version:
Wallet SDK for the Nexa blockchain
116 lines (115 loc) • 2.53 kB
JSON
{
"name": "nexa-wallet-sdk",
"version": "0.3.4",
"type": "module",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"browser": "dist/index.web.mjs",
"exports": {
"types": "./dist/index.d.ts",
"node": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"browser": "./dist/index.web.mjs",
"default": "./dist/index.mjs"
},
"scripts": {
"build": "parcel build",
"lint": "eslint .",
"fix-lint": "eslint --fix .",
"dev": "parcel watch",
"test": "vitest run",
"clean": "rm -rf dist .parcel-cache",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/nexa/wallet-sdk-ts.git"
},
"keywords": [
"nexa",
"wallet",
"web3",
"crypto",
"dapp",
"walletcomms",
"walletsdk"
],
"contributors": [
{
"name": "Dolaned"
},
{
"name": "Griffith"
},
{
"name": "Vgrunner"
},
{
"name": "myendy"
}
],
"author": "Dolaned",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/nexa/wallet-sdk-ts/issues"
},
"homepage": "https://gitlab.com/nexa/wallet-sdk-ts#readme",
"description": "Wallet SDK for the Nexa blockchain",
"devDependencies": {
"@parcel/packager-ts": "^2.15.4",
"@parcel/transformer-typescript-types": "^2.15.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.1",
"eslint": "^9.20.1",
"parcel": "^2.15.4",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.0",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.24.1",
"vitest": "^3.0.8"
},
"targets": {
"main": {
"context": "node",
"outputFormat": "commonjs",
"distDir": "dist",
"isLibrary": true,
"includeNodeModules": [
"lodash-es"
]
},
"module": {
"context": "node",
"outputFormat": "esmodule",
"distDir": "dist",
"isLibrary": true
},
"browser": {
"context": "browser",
"outputFormat": "esmodule",
"distDir": "dist",
"isLibrary": true
}
},
"dependencies": {
"@vgrunner/electrum-cash": "^2.0.12",
"bip39": "^3.1.0",
"js-big-decimal": "^2.2.0",
"libnexa-ts": "^1.0.5",
"lodash-es": "^4.17.21"
},
"files": [
"dist"
],
"directories": {
"test": "tests"
},
"@parcel/resolver-default": {
"packageExports": true
}
}