-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
webgme-setup.json
110 lines (110 loc) · 3.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
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
{
"components": {
"plugins": {
"SoftwareGenerator": {
"src": "src\\plugins\\SoftwareGenerator",
"test": "test\\plugins\\SoftwareGenerator"
},
"RunExperiment": {
"src": "src\\plugins\\RunExperiment",
"test": "test\\plugins\\RunExperiment"
},
"StopExperiment": {
"src": "src/plugins/StopExperiment",
"test": "test/plugins/StopExperiment"
},
"TimingAnalysis": {
"src": "src/plugins/TimingAnalysis",
"test": "test/plugins/TimingAnalysis"
},
"GenerateDocumentation": {
"src": "src/plugins/GenerateDocumentation",
"test": "test/plugins/GenerateDocumentation"
},
"InstallRuntime": {
"src": "src/plugins/InstallRuntime",
"test": "test/plugins/InstallRuntime"
}
},
"addons": {},
"decorators": {
"DocumentDecorator": {
"src": "src/decorators/DocumentDecorator"
}
},
"visualizers": {
"RootViz": {
"src": "panels/RootViz/RootVizPanel",
"title": "RootViz",
"panel": "src/visualizers/panels/RootViz",
"secondary": false,
"widget": "src/visualizers/widgets/RootViz"
},
"ResultsViz": {
"src": "panels/ResultsViz/ResultsVizPanel",
"title": "ResultsViz",
"panel": "src/visualizers/panels/ResultsViz",
"secondary": false,
"widget": "src/visualizers/widgets/ResultsViz"
},
"CommViz": {
"src": "panels/CommViz/CommVizPanel",
"title": "CommViz",
"panel": "src/visualizers/panels/CommViz",
"secondary": false,
"widget": "src/visualizers/widgets/CommViz"
}
},
"layouts": {},
"routers": {}
},
"dependencies": {
"plugins": {
"SoftwareGenerator": {
"project": "webgme-hfsm",
"path": "node_modules/webgme-hfsm/src/plugins/SoftwareGenerator"
}
},
"addons": {},
"decorators": {
"UMLStateMachineDecorator": {
"project": "webgme-hfsm",
"path": "node_modules/webgme-hfsm/src/decorators/UMLStateMachineDecorator"
}
},
"visualizers": {
"CodeEditor": {
"src": "panels/CodeEditor/CodeEditorPanel",
"title": "CodeEditor",
"panel": "src/visualizers/panels/CodeEditor",
"secondary": false,
"widget": "src/visualizers/widgets/CodeEditor",
"project": "webgme-codeeditor"
},
"HFSMViz": {
"src": "panels/HFSMViz/HFSMVizPanel",
"title": "HFSMViz",
"panel": "src/visualizers/panels/HFSMViz",
"secondary": false,
"widget": "src/visualizers/widgets/HFSMViz",
"project": "webgme-hfsm"
},
"UIReplay": {
"src": "panels/UIReplay/UIReplayControllers",
"title": "UIReplay",
"panel": "src/visualizers/panels/UIReplay",
"secondary": true,
"widget": "src/visualizers/widgets/UIReplay",
"project": "webgme-ui-replay"
}
},
"layouts": {},
"routers": {
"UIRecorder": {
"project": "webgme-ui-replay",
"path": "node_modules/webgme-ui-replay/src/routers/UIRecorder",
"mount": "routers/UIRecorder"
}
}
}
}