-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"name": "reacthelperv2",
"version": "1.0.0",
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.modern.js",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.modern.js",
"files": [
"dist"
],
"microbundle": {
"globals": {
"wagmi": "wagmi",
"wagmi/chains": "wagmiChains",
"wagmi/connectors": "wagmiConnectors",
"wagmi/actions": "wagmiActions",
"@tanstack/react-query": "ReactQuery",
"viem": "viem",
"react": "React",
"react-dom": "ReactDOM"
}
},
"scripts": {
"dev": "vite example --config example/vite.config.ts",
"clean": "rm -rf dist",
"prebuild": "pnpm clean",
"build": "pnpm clean && microbundle --jsx React.createElement --format modern,cjs",
"test": "node --test",
"compile": "node scripts/updatePoolzData.js && node scripts/generateContractTypes.js"
},
"dependencies": {
"@tanstack/react-query": "5.45.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "2.31.7",
"wagmi": "2.15.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.6.0",
"@wagmi/cli": "latest",
"buffer": "^6.0.3",
"microbundle": "^0.15.1",
"typescript": "^5.8.3",
"vite": "^5.4.19"
}
}