-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.08 KB
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
{
"name": "@reserve-protocol/react-zapper",
"version": "2.10.2",
"type": "module",
"packageManager": "pnpm@11.1.1",
"description": "React component for DTF minting with zap functionality",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./styles.css": "./dist/react-zapper.css"
},
"files": [
"dist",
"!demo"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"build:demo": "vite build --mode demo",
"prepublishOnly": "pnpm run build",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest run",
"clean": "rm -rf dist",
"extract": "lingui extract",
"compile": "lingui compile"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"web3",
"defi",
"zapper",
"dtf",
"reserve-protocol"
],
"author": "Reserve Protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/reserve-protocol/react-zapper.git"
},
"peerDependencies": {
"@tanstack/react-query": "^5.87.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"viem": "^2.50.0",
"wagmi": "^2.19.0"
},
"dependencies": {
"@cowprotocol/cow-sdk": "9.1.5",
"@lucide/lab": "^0.1.2",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"clsx": "^2.1.1",
"cross-fetch": "^3.2.0",
"decimal.js-light": "^2.5.1",
"jotai": "^2.19.1",
"lucide-react": "^0.461.0",
"mixpanel-browser": "^2.56.0",
"tailwind-merge": "^2.5.5",
"uuid": "^13.0.0"
},
"devDependencies": {
"@lingui/cli": "^5.9.5",
"@lingui/conf": "^5.9.5",
"@lingui/core": "^5.9.5",
"@lingui/message-utils": "5.9.5",
"@lingui/react": "^5.9.5",
"@lingui/vite-plugin": "^5.9.5",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@rainbow-me/rainbowkit": "^2.2.5",
"@testing-library/react": "^16.3.2",
"@types/mixpanel-browser": "^2.50.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.20",
"babel-plugin-macros": "^3.1.0",
"class-variance-authority": "^0.7.1",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^29.1.1",
"postcss": "^8.4.49",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tailwindcss": "^3.4.15",
"typescript": "^5.0.0",
"viem": "2.50.4",
"vite": "^7.0.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "3.2.4",
"wagmi": "2.19.5"
}
}