-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.32 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
{
"name": "@latticexyz/explorer",
"version": "2.2.22",
"description": "World Explorer is a tool for visually exploring and manipulating the state of worlds",
"type": "module",
"exports": {
"./observer": "./dist/exports/observer.js"
},
"typesVersions": {
"*": {
"observer": [
"./dist/exports/observer.d.ts"
]
}
},
"bin": {
"explorer": "./bin/explorer.js"
},
"files": [
"bin",
"dist",
".next/standalone/packages/explorer"
],
"scripts": {
"build": "pnpm run build:js && pnpm run build:explorer",
"build:explorer": "next build && shx cp -r .next/static .next/standalone/packages/explorer/.next",
"build:js": "tsup",
"clean": "pnpm run clean:js && pnpm run clean:explorer",
"clean:explorer": "shx rm -rf .next .turbo",
"clean:js": "shx rm -rf dist",
"dev": "tsup --watch",
"explorer:dev": "next dev --port 13690",
"explorer:start": "node .next/standalone/packages/explorer/server.js",
"knip": "knip",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@latticexyz/block-logs-stream": "workspace:*",
"@latticexyz/common": "workspace:*",
"@latticexyz/config": "workspace:*",
"@latticexyz/protocol-parser": "workspace:*",
"@latticexyz/schema-type": "workspace:*",
"@latticexyz/store": "workspace:*",
"@latticexyz/store-indexer": "workspace:*",
"@latticexyz/store-sync": "workspace:*",
"@latticexyz/world": "workspace:*",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.6",
"@radix-ui/themes": "^3.0.5",
"@rainbow-me/rainbowkit": "^2.2.6",
"@tanstack/react-query": "^5.51.3",
"@tanstack/react-table": "^8.19.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"lucide-react": "^0.408.0",
"monaco-editor": "^0.52.0",
"next": "14.2.5",
"node-sql-parser": "^5.3.3",
"nuqs": "^1.19.2",
"pg": "^8.16.0",
"query-string": "^9.1.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"react-intersection-observer": "^9.15.1",
"react18-json-view": "^0.2.9",
"sonner": "^1.5.0",
"sql-autocomplete": "^1.1.1",
"tailwind-merge": "^1.12.0",
"wagmi": "2.15.5",
"yargs": "^17.7.1",
"zod": "3.23.8",
"zustand": "^4.3.7"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/debug": "^4.1.7",
"@types/pg": "^8.15.2",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"@types/yargs": "^17.0.10",
"eslint-config-next": "14.2.3",
"knip": "^5.30.2",
"postcss": "^8",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"viem": "2.30.6"
},
"peerDependencies": {
"viem": "2.x"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": "20.x",
"pnpm": "^9"
}
}