UNPKG

@keyban/sdk-base

Version:

Keyban Javascript SDK provides core functionalities for the MPC wallet solution, supporting web and Node.js apps with TypeScript, custom storage, and Ethereum blockchain integration.

101 lines 2.71 kB
{ "name": "@keyban/sdk-base", "version": "0.11.0", "description": "Keyban Javascript SDK provides core functionalities for the MPC wallet solution, supporting web and Node.js apps with TypeScript, custom storage, and Ethereum blockchain integration.", "homepage": "https://docs.keyban.io/", "author": { "name": "Keyban", "email": "it@keyban.io", "url": "https://keyban.io" }, "keywords": [ "polygon", "ecdsa", "mpc", "tss", "crypto", "typescript", "ethereum", "wallet", "blockchain" ], "license": "Apache-2.0", "types": "./dist/index.d.ts", "main": "./dist/index.js", "module": "./dist/index.mjs", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./graphql": { "types": "./dist/graphql.d.ts", "import": "./dist/graphql.mjs", "require": "./dist/graphql.js" }, "./rpc": { "types": "./dist/rpc.d.ts", "import": "./dist/rpc.mjs", "require": "./dist/rpc.js" }, "./errors": { "types": "./dist/errors.d.ts", "import": "./dist/errors.mjs", "require": "./dist/errors.js" }, "./package.json": "./package.json" }, "files": [ "dist", "LICENSE", "README.md" ], "publishConfig": { "access": "public" }, "dependencies": { "@apollo/client": "^3.13.8", "@graphql-typed-document-node/core": "^3.2.0", "@keyban/ecdsa-wasm-client": "^0.7.0", "@noble/curves": "^1.9.2", "@stellar/stellar-sdk": "^13.3.0", "bignumber.js": "^9.3.0", "buffer": "^6.0.3", "core-js": "^3.43.0", "graphql-ws": "^6.0.5", "starknet": "^6.24.1", "viem": "^2.31.4" }, "devDependencies": { "@eslint/js": "^9.29.0", "@graphql-codegen/cli": "^5.0.7", "@graphql-codegen/typed-document-node": "^5.1.1", "@starknet-io/types-js": "^0.8.4", "@types/node": "^22.15.32", "eslint": "^9.29.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-jsdoc": "^50.8.0", "eslint-plugin-prettier": "^5.5.0", "eslint-plugin-simple-import-sort": "^12.1.1", "globals": "^15.15.0", "jose": "^5.10.0", "prettier": "^3.6.0", "tsup": "^8.5.0", "typedoc": "^0.28.5", "typedoc-plugin-markdown": "^4.7.0", "typedoc-plugin-merge-modules": "^6.1.0", "typedoc-plugin-remark": "^1.3.0", "typescript": "^5.8.3", "typescript-eslint": "^8.34.1", "vitest": "^3.2.4" }, "scripts": { "codegen": "graphql-codegen", "dev": "tsup --watch src", "build": "tsup", "lint": "eslint . --max-warnings 0", "lint:fix": "pnpm lint --fix", "generate-docs": "typedoc" } }