-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebgme-setup.json
76 lines (76 loc) · 2.16 KB
/
webgme-setup.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
71
72
73
74
75
76
{
"components": {
"visualizers": {
"SemanticGraph": {
"src": "panels/SemanticGraph/SemanticGraphPanel",
"title": "SemanticGraph",
"panel": "src/visualizers/panels/SemanticGraph",
"secondary": false,
"widget": "src/visualizers/widgets/SemanticGraph"
},
"ActionButton": {
"src": "panels/ActionButton/ActionButton",
"title": "ActionButton",
"panel": "src/visualizers/panels/ActionButton",
"secondary": true,
"widget": "src/visualizers/widgets/ActionButton"
}
},
"seeds": {
"SemanticGraph": {
"src": "src/seeds/SemanticGraph"
},
"SemanticGraph-test": {
"src": "src/seeds/SemanticGraph-test"
}
},
"decorators": {
"SemanticNodeDecorator": {
"src": "src/decorators/SemanticNodeDecorator"
}
},
"layouts": {}
},
"dependencies": {
"visualizers": {
"EasyDAG": {
"src": "panels/EasyDAG/EasyDAGPanel",
"title": "EasyDAG",
"panel": "src/visualizers/panels/EasyDAG",
"secondary": false,
"widget": "src/visualizers/widgets/EasyDAG",
"project": "webgme-easydag"
},
"FloatingActionButton": {
"src": "panels/FloatingActionButton/FloatingActionButtonPanel",
"title": "FloatingActionButton",
"panel": "src/visualizers/panels/FloatingActionButton",
"secondary": true,
"widget": "src/visualizers/widgets/FloatingActionButton",
"project": "webgme-fab"
},
"AutoViz": {
"src": "panels/AutoViz/AutoVizPanel",
"title": "AutoViz",
"panel": "src/visualizers/panels/AutoViz",
"secondary": false,
"widget": "src/visualizers/widgets/AutoViz",
"project": "webgme-autoviz"
}
},
"seeds": {},
"decorators": {
"EllipseDecorator": {
"project": "webgme-easydag",
"path": "node_modules/webgme-easydag/src/decorators/EllipseDecorator"
}
},
"layouts": {
"CHFLayout": {
"project": "webgme-chflayout",
"path": "node_modules/webgme-chflayout/src/layouts/CHFLayout",
"enabled": true
}
}
}
}