@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.
97 lines • 2.53 kB
JSON
{
"name": "@keyban/sdk-base",
"version": "0.14.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",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./graphql": {
"types": "./dist/graphql.d.ts",
"import": "./dist/graphql.js"
},
"./api": {
"types": "./dist/api.d.ts",
"import": "./dist/api.js"
},
"./errors": {
"types": "./dist/errors.d.ts",
"import": "./dist/errors.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@apollo/client": "^4.0.5",
"@graphql-typed-document-node/core": "^3.2.0",
"@keyban/types": "^0.14.0",
"@noble/curves": "^2.0.1",
"@stellar/stellar-sdk": "^14.3.0",
"bignumber.js": "^9.3.1",
"buffer": "^6.0.3",
"core-js": "^3.45.1",
"graphql-ws": "^6.0.6",
"starknet": "^7.6.4",
"viem": "^2.37.8"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@graphql-codegen/cli": "^6.0.0",
"@graphql-codegen/typed-document-node": "^6.0.0",
"@starknet-io/types-js": "^0.9.2",
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^60.3.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.4.0",
"jose": "^6.1.0",
"prettier": "^3.6.2",
"tsup": "^8.5.1",
"typedoc": "^0.28.13",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-merge-modules": "^7.0.0",
"typedoc-plugin-remark": "^2.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.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"
}
}