unich-web3-sdk
Version:
Web3 SDK for DEX applications with multi-chain support
80 lines (79 loc) • 1.95 kB
JSON
{
"name": "unich-web3-sdk",
"version": "0.1.2",
"description": "Web3 SDK for DEX applications with multi-chain support",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./chains": {
"types": "./dist/chains/index.d.ts",
"import": "./dist/chains/index.mjs",
"require": "./dist/chains/index.js"
},
"./connectors": {
"types": "./dist/connectors/index.d.ts",
"import": "./dist/connectors/index.mjs",
"require": "./dist/connectors/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"web3",
"blockchain",
"dex",
"wallet",
"ethereum",
"solana",
"multichain",
"nextjs"
],
"author": "",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.87.6",
"ethers": "^6.9.0",
"eventemitter3": "^5.0.1",
"immer": "^10.1.1",
"viem": "^2.23.6",
"zustand": "^4.5.6"
},
"peerDependencies": {
"next": ">=13.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/eventemitter3": "^1.2.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"concurrently": "^9.1.2",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}