-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 880 Bytes
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
{
"name": "@web3viz/react-graph",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "React Three Fiber force-directed graph visualization for Web3 data",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "echo 'lint not configured'"
},
"dependencies": {
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"@react-three/postprocessing": "^2.19.1",
"@web3viz/core": "*",
"postprocessing": "^6.39.0",
"three": "^0.169.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.169.0",
"@web3viz/tsconfig": "*",
"typescript": "^5.5.0"
}
}