UNPKG

@desig/web3

Version:

Desig: The Blockchain-Agnostic Multisig Solution

68 lines 2.08 kB
{ "name": "@desig/web3", "version": "1.3.1", "description": "Desig: The Blockchain-Agnostic Multisig Solution", "homepage": "https://web3.desig.io/", "keywords": [ "blockchain", "multisig", "multichain", "blockchain-agnostic", "smartcontractless" ], "main": "dist/index.js", "repository": "git@github.com:DescartesNetwork/desig-web3.git", "author": { "name": "Tu Phan", "email": "tuphan@descartes.network" }, "license": "MIT", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "engines": { "node": ">=16 <=18" }, "dependencies": { "@desig/core": "^1.0.7", "@desig/supported-chains": "^1.1.3", "@noble/ed25519": "^1.7.1", "@noble/hashes": "^1.1.5", "@noble/secp256k1": "^1.7.0", "@solana/web3.js": "^1.73.0", "axios": "^1.2.2", "bn.js": "^5.2.1", "bs58": "^5.0.0", "ethers": "^6.1.0", "isomorphic-ws": "^5.0.0", "protobufjs": "^7.2.3", "ws": "^8.13.0", "zod": "^3.21.4" }, "devDependencies": { "@types/bn.js": "^5.1.1", "@types/chai": "^4.3.4", "@types/mocha": "^10.0.1", "@types/node": "^18.11.18", "chai": "^4.3.7", "gh-pages": "^4.0.0", "mocha": "^10.2.0", "nodemon": "^2.0.22", "protobufjs-cli": "^1.1.1", "rimraf": "^3.0.2", "ts-mocha": "^10.0.0", "ts-node": "^10.9.1", "typedoc": "^0.23.23", "typescript": "^4.9.4" }, "scripts": { "build:proto": "pbjs -t static-module -w commonjs -o proto/index.js ./src/**/*.proto && pbts -o proto/index.d.ts proto/index.js", "build:ts": "tsc", "build": "pnpm clean && mkdir proto && pnpm build:proto && pnpm build:ts", "deploy": "typedoc --includeVersion --excludePrivate --excludeProtected ./src/index.ts && echo web3.desig.io >> ./docs/CNAME && gh-pages -d docs", "test": "pnpm build && mocha --exit --require ts-node/register -t 120000 test/**/*.*.test.ts", "test:watch": "nodemon --ext ts --watch src --watch test --exec \"pnpm test\"", "clean": "rimraf dist && rimraf proto" } }