UNPKG

wildcard-sdk

Version:

Node.js SDK for interacting with the Wildcard Deployer contract

93 lines 2.1 kB
{ "name": "wildcard-sdk", "version": "3.1.7", "description": "Node.js SDK for interacting with the Wildcard Deployer contract", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" }, "./react": { "import": "./dist/react/index.mjs", "types": "./dist/react/index.d.ts" } }, "keywords": [ "ethereum", "web3", "defi", "token-launcher", "bonding-curve", "sdk" ], "author": "Wildcard Team", "license": "BUSL-1.1", "dependencies": { "@radix-ui/react-avatar": "^1.1.10", "axios": "^1.10.0", "clsx": "^2.1.1", "form-data": "^4.0.4", "lightweight-charts": "^5.0.8", "lucide-react": "^0.536.0", "sonner": "^2.0.7", "tailwind-merge": "^3.3.1", "use-debounce": "^10.0.5", "zustand": "^5.0.7" }, "peerDependencies": { "@tanstack/react-query": "^5.83.0", "ethers": "^6.14.3", "viem": "^2.31.3", "wagmi": "^2.16.1" }, "peerDependenciesMeta": { "ethers": { "optional": true }, "viem": { "optional": true }, "lightweight-charts": { "optional": true } }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.14.0", "@types/react": "^19.1.8", "@typescript-eslint/eslint-plugin": "^7.13.0", "@typescript-eslint/parser": "^7.13.0", "dotenv": "^16.4.0", "eslint": "^8.57.0", "jest": "^29.7.0", "prettier": "^3.3.0", "react": "^19.1.1", "ts-node": "^10.9.0", "tsup": "^8.5.0", "typescript": "^5.4.0" }, "files": [ "dist", "README.md", "dist/**/*" ], "repository": { "type": "git", "url": "https://github.com/wildprotocol/sdk" }, "engines": { "node": ">=16.0.0" }, "scripts": { "build": "tsup", "dev": "tsc --watch", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "example": "ts-node -r dotenv/config" } }