package.json
1 { 2 "name": "modules-ui", 3 "version": "0.0.1", 4 "private": true, 5 "main": "./dist/index.js", 6 "module": "./dist/index.mjs", 7 "types": "./dist/index.d.ts", 8 "sideEffects": false, 9 "license": "MIT", 10 "files": [ 11 "dist/**" 12 ], 13 "scripts": { 14 "build": "tsup", 15 "dev": "tsup --watch", 16 "lint": "eslint \"src/**/*.{ts,tsx}\" --fix", 17 "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" 18 }, 19 "dependencies": { 20 "@hatsprotocol/hsg-sdk": "^0.0.15", 21 "@hatsprotocol/modules-sdk": "^1.5.1", 22 "@hatsprotocol/sdk-v1-core": "^0.12.4", 23 "@privy-io/react-auth": "2.17.3", 24 "@rainbow-me/rainbowkit": "^2.2.3", 25 "@tanstack/react-query": "^5.81.5", 26 "@unlock-protocol/contracts": "^0.0.29", 27 "date-fns": "^2.29.3", 28 "lodash": "^4.17.21", 29 "next": "15.5.2", 30 "posthog-js": "^1.235.6", 31 "react": "^18.3.1", 32 "react-hook-form": "^7.50.1", 33 "react-icons": "^4.7.1", 34 "viem": "2.31.7", 35 "wagmi": "^2.15.0" 36 } 37 }