UNPKG

@flaunch/sdk

Version:

Flaunch SDK to easily interact with the Flaunch protocol

97 lines 2.72 kB
{ "name": "@flaunch/sdk", "version": "0.8.2", "description": "Flaunch SDK to easily interact with the Flaunch protocol", "license": "MIT", "author": "Apoorv Lathey <apoorv@flayer.io>", "homepage": "https://github.com/flayerlabs/flaunch-sdk#readme", "repository": { "type": "git", "url": "git+https://github.com/flayerlabs/flaunch-sdk.git" }, "bugs": { "url": "https://github.com/flayerlabs/flaunch-sdk/issues" }, "publishConfig": { "access": "public" }, "keywords": [ "flaunch", "memecoin", "launchpad", "uniswap", "uniswap v4", "sdk" ], "main": "dist/index.cjs.js", "module": "dist/index.esm.js", "unpkg": "dist/index.umd.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.js", "require": "./dist/index.cjs.js" }, "./abi": { "types": "./dist/abi/index.d.ts", "import": "./dist/abi/index.js", "require": "./dist/abi/index.cjs" }, "./addresses": { "types": "./dist/addresses.d.ts", "import": "./dist/addresses.js", "require": "./dist/addresses.cjs" }, "./helpers": { "types": "./dist/helpers/index.d.ts", "import": "./dist/helpers/index.js", "require": "./dist/helpers/index.cjs" }, "./hooks": { "types": "./dist/hooks/index.d.ts", "import": "./dist/hooks/index.js", "require": "./dist/hooks/index.cjs" }, "./utils": { "types": "./dist/utils/index.d.ts", "import": "./dist/utils/index.js", "require": "./dist/utils/index.cjs" } }, "files": [ "dist" ], "packageManager": "pnpm@8.15.4", "devDependencies": { "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^13.3.0", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^8.3.2", "@types/react": "^19.0.10", "rimraf": "^6.0.1", "rollup": "^2.75.6", "tslib": "^2.4.0", "typedoc": "^0.25.12", "typedoc-plugin-markdown": "^3.17.1", "typescript": "^5.3.3" }, "dependencies": { "@delvtech/drift": "^0.8.4", "@delvtech/drift-viem": "^0.8.4", "@uniswap/v3-sdk": "^3.24.1", "axios": "^1.8.1", "react": "^19.0.0", "viem": "^2.29.2" }, "scripts": { "build": "tsc --emitDeclarationOnly && rollup -c", "dev": "rollup -c -w", "clean": "rimraf dist", "prebuild": "npm run clean", "typecheck": "tsc --noEmit", "docs:generate": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts --excludeExternals --exclude '**/abi/**' --includeVersion", "docs:llms": "node scripts/generate-llms-doc.js" } }