custom-web3-provider-sdk
Version:
Universal Web3 Provider SDK. A robust, production-ready JavaScript/TypeScript SDK that provides comprehensive wallet connection utilities for blockchain applications with enhanced error handling, retry mechanisms, and comprehensive wallet functionality.
87 lines (86 loc) • 2.96 kB
JSON
{
"name": "custom-web3-provider-sdk",
"version": "1.0.14",
"description": "Universal Web3 Provider SDK. A robust, production-ready JavaScript/TypeScript SDK that provides comprehensive wallet connection utilities for blockchain applications with enhanced error handling, retry mechanisms, and comprehensive wallet functionality.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npm run build:cjs",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "tsc --noEmit",
"check-all": "npm run type-check && npm run lint && npm run format:check",
"deploy:demo": "npm run build && cp -rf dist/* demo/node_modules/custom-web3-provider-sdk/dist/",
"build:pack": "npm run clean && npm run build && npm pack",
"install:demo": "npm run build:pack && cd demo && npm unlink custom-web3-provider-sdk 2>/dev/null || true && npm install ../custom-web3-provider-sdk-1.0.0.tgz && cd .. && rm -f custom-web3-provider-sdk-*.tgz",
"fresh:demo": "npm run install:demo",
"dev:setup": "npm run install:demo",
"rebuild:demo": "npm run clean && npm run build && npm pack && cd demo && npm install ../custom-web3-provider-sdk-1.0.0.tgz && cd .. && rm -f custom-web3-provider-sdk-*.tgz"
},
"keywords": [
"gala",
"web3",
"provider",
"sdk",
"wallet",
"blockchain",
"ethereum",
"react",
"typescript",
"eip-1193",
"metamask",
"walletconnect",
"crypto",
"defi"
],
"author": "Antier PVT LTD",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hardilsingh/custom-web3-provider-sdk"
},
"bugs": {
"url": "https://github.com/hardilsingh/custom-web3-provider-sdk/issues"
},
"homepage": "https://github.com/hardilsingh/custom-web3-provider-sdk#readme",
"engines": {
"node": ">=18",
"npm": ">=7"
},
"dependencies": {
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.8.3"
}
}