-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.69 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.69 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
{
"name": "rdf-graph-visualization",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.10.3",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@react-hook/resize-observer": "^2.0.2",
"csstype": "^3.1.3",
"framer-motion": "^11.11.9",
"js-yaml": "^4.1.0",
"rdflib": "^2.2.35",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-force-graph-3d": "^1.24.4",
"react-icons": "^5.3.0",
"three": "^0.169.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.169.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^9.11.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.8"
},
"author": {
"name": "Mustafa Soylu",
"email": "m.soylu@fz-juelich.de",
"url": "https://orcid.org/0000-0003-2637-0432"
},
"description": "Visualization of RDF graphs in Turtle format in 3D on the web.",
"keywords": [
"rdf",
"graph",
"turtle",
"visualization"
],
"maintainers": [
{
"name": "Mustafa Soylu",
"email": "m.soylu@fz-juelich.de",
"url": "https://orcid.org/0000-0003-2637-0432"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Materials-Data-Science-and-Informatics/rdf-graph-visualization"
},
"contributors": [
{
"name": "Mustafa Soylu",
"email": "m.soylu@fz-juelich.de",
"url": "https://orcid.org/0000-0003-2637-0432"
},
{
"name": "Volker Hofmann",
"email": "v.hofmann@fz-juelich.de",
"url": "https://orcid.org/0000-0002-5149-603X"
},
{
"name": "Stefan Sandfeld",
"email": "s.sandfeld@fz-juelich.de",
"url": "https://orcid.org/0000-0001-9560-4728"
},
{
"name": "Said Fathalla",
"email": "s.fathalla@fz-juelich.de",
"url": "https://orcid.org/0000-0002-2818-5890"
}
],
"homepage": "https://github.com/Materials-Data-Science-and-Informatics/rdf-graph-visualization",
"os": [
"win32",
"linux",
"darwin"
],
"optionalDependencies": {
"@lmdb/lmdb-linux-x64": "^3.0.13",
"@lmdb/lmdb-win32-x64": "^3.0.13",
"@rollup/rollup-win32-x64-msvc": "4.22.4",
"@rollup/rollup-linux-x64-gnu": "4.22.4"
}
}