-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
{
"name": "block3d",
"version": "0.3.1",
"author": "Rohan Nero",
"license": "GPL-3.0-only",
"private": false,
"description": "Streamlining access control with customizable rule-based configuration",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/types.d.ts",
"type": "module",
"files": [
"dist"
],
"keywords": [
"blockchain",
"wagmi",
"rainbowkit"
],
"scripts": {
"dev": "next dev",
"build": "rm -rf dist/* && rollup -c && npm run format && npm run fix-styles-path",
"format": "mv dist/esm/styles.css dist/",
"fix-styles-path": "node fix-styles-path.cjs",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.1.4",
"@rainbow-me/rainbowkit": "^2.1.2",
"@tanstack/react-query": "^5.45.1",
"encoding": "^0.1.13",
"framer-motion": "^11.2.11",
"i18next": "^23.11.5",
"pino-pretty": "^11.2.1",
"qrcode.react": "^3.1.0",
"viem": "^2.16.0",
"wagmi": "^2.10.4"
},
"peerDependencies": {
"@nextui-org/react": "^2.3.6",
"@nextui-org/table": "^2.0.33",
"next": "^14.2.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20",
"@types/react": "^18",
"@wagmi/core": "^2.11.4",
"daisyui": "^4.12.2",
"prettier": "3.3.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-import-css": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
},
"overrides": {
"mipd": {
"ws": "8.17.1"
},
"viem": {
"ws": "8.17.1"
}
}
}