-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@mento-protocol/ui-toolkit",
"version": "0.1.6",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./styles": {
"import": "./dist/styles/index.css",
"require": "./dist/styles/index.css"
},
"./configs/*": {
"types": "./dist/configs/*.d.ts",
"import": "./dist/configs/*.mjs",
"require": "./dist/configs/*.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"configs",
".prettierrc"
],
"scripts": {
"build": "pnpm clean && pnpm tsup",
"dev": "tsup --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"verify": "node verify-build.js",
"prepublishOnly": "pnpm clean && pnpm build && pnpm verify",
"version-packages": "changeset version && pnpm install --no-frozen-lockfile",
"release": "changeset publish --no-git-tag"
},
"peerDependencies": {
"@rainbow-me/rainbowkit": "^2.0.0",
"@tanstack/react-query": "^5.0.0",
"@types/react": "^18.2.0",
"date-fns": "^2.30.0",
"framer-motion": "^11.0.0",
"next": "^13.0.0 || ^14.0.0 || ^15.0.0",
"next-themes": "^0.4.0",
"react": "18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.0.0",
"viem": "^2.0.0",
"wagmi": "^2.0.0"
},
"peerDependenciesMeta": {
"framer-motion": {
"optional": true
},
"next-themes": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@rainbow-me/rainbowkit": "^2.0.1",
"@secretlint/secretlint-rule-preset-recommend": "^8.1.2",
"@tanstack/react-query": "^5.62.10",
"@trunkio/launcher": "^1.3.4",
"@types/node": "^22.10.2",
"@types/react": "^18.2.0",
"@types/react-copy-to-clipboard": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"autoprefixer": "^10.4.20",
"date-fns": "^2.30.0",
"eslint": "^9.20.1",
"eslint-config-next": "^15.1.7",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"framer-motion": "11.5.4",
"next-themes": "^0.4.4",
"pino-pretty": "^13.0.0",
"postcss": "^8.4.49",
"prettier": "^3.2.1",
"prettier-plugin-tailwindcss": "^0.5.13",
"react": "18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.17",
"tsup": "^8.3.6",
"typescript": "^5.7.2",
"viem": "^2.7.9",
"wagmi": "^2.5.7",
"yaml-lint": "^1.7.0"
},
"dependencies": {
"@headlessui/react": "1.7.19",
"@mdxeditor/editor": "^3.21.4",
"@mento-protocol/mento-sdk": "^1.0.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@tailwindcss/typography": "^0.5.16",
"blo": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"react-copy-to-clipboard": "^5.1.0",
"react-day-picker": "^8.9.1",
"react-hook-form": "^7.54.2",
"react-markdown": "^9.0.3",
"sonner": "^1.7.4",
"tailwindcss-animate": "^1.0.7"
}
}