-
Notifications
You must be signed in to change notification settings - Fork 3
/
webgme-setup.json
102 lines (102 loc) · 2.7 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
{
"components": {
"plugins": {
"CreateKerasMeta": {
"src": "src/plugins/CreateKerasMeta",
"test": "test/plugins/CreateKerasMeta"
},
"GenerateKeras": {
"src": "src/plugins/GenerateKeras",
"test": "test/plugins/GenerateKeras"
},
"ValidateKeras": {
"src": "src/plugins/ValidateKeras",
"test": "test/plugins/ValidateKeras"
},
"ExportKeras": {
"src": "src/plugins/ExportKeras",
"test": "test/plugins/ExportKeras"
}
},
"visualizers": {
"KerasArchEditor": {
"src": "panels/KerasArchEditor/KerasArchEditorPanel",
"title": "KerasArchEditor",
"panel": "src/visualizers/panels/KerasArchEditor",
"secondary": false,
"widget": "src/visualizers/widgets/KerasArchEditor"
},
"GenericAttributeEditor": {
"src": "panels/GenericAttributeEditor/GenericAttributeEditorPanel",
"title": "GenericAttributeEditor",
"panel": "src/visualizers/panels/GenericAttributeEditor",
"secondary": false,
"widget": "src/visualizers/widgets/GenericAttributeEditor"
}
},
"decorators": {
"LayerDecorator": {
"src": "src/decorators/LayerDecorator"
}
},
"addons": {},
"layouts": {},
"routers": {
"KerasAnalysis": {
"src": "src/routers/KerasAnalysis",
"test": "test/routers/KerasAnalysis",
"mount": "routers/KerasAnalysis"
}
},
"seeds": {
"dev": {
"src": "src/seeds/dev"
},
"base": {
"src": "src/seeds/base"
},
"keras": {
"src": "src/seeds/keras"
},
"tests": {
"src": "src/seeds/tests"
}
}
},
"dependencies": {
"plugins": {
"SimpleNodes": {
"project": "webgme-simple-nodes",
"path": "node_modules/webgme-simple-nodes/src/plugins/SimpleNodes"
}
},
"visualizers": {
"EasyDAG": {
"src": "panels/EasyDAG/EasyDAGPanel",
"title": "EasyDAG",
"panel": "src/visualizers/panels/EasyDAG",
"secondary": false,
"widget": "src/visualizers/widgets/EasyDAG",
"project": "webgme-easydag"
},
"AutoViz": {
"src": "panels/AutoViz/AutoVizPanel",
"title": "AutoViz",
"panel": "src/visualizers/panels/AutoViz",
"secondary": false,
"widget": "src/visualizers/widgets/AutoViz",
"project": "webgme-autoviz"
}
},
"decorators": {
"EllipseDecorator": {
"project": "webgme-easydag",
"path": "node_modules/webgme-easydag/src/decorators/EllipseDecorator"
}
},
"addons": {},
"layouts": {},
"routers": {},
"seeds": {}
}
}