-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.3 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.3 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
{
"name": "react-dot-visualization",
"version": "1.0.0",
"description": "Interactive dot visualization component with zoom, pan, and hover interactions",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --config vite.lib.config.js",
"preview": "vite preview",
"prepublishOnly": "npm run build:lib",
"link:local": "npm run build:lib && npm link",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"visualization",
"d3",
"interactive",
"dots",
"zoom",
"pan",
"svg"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0 <20.0.0",
"react-dom": ">=16.8.0 <20.0.0"
},
"dependencies": {
"d3": "^7.8.4",
"sigma": "^3.0.0",
"graphology": "^0.25.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"vite": "^4.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"homepage": ""
}