-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
237 lines (237 loc) · 6.69 KB
/
Copy pathpackage.json
File metadata and controls
237 lines (237 loc) · 6.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
{
"name": "jdm-electron-flask",
"type": "module",
"version": "1.0.19",
"description": "JDM Electron + Flask plugin for jdm-cli",
"bin": {
"jdm-electron-flask": "bin/guard.js"
},
"main": "./lib/index.js",
"scripts": {
"test": "echo \"No tests yet\""
},
"dependencies": {
"chalk": "^5.3.0",
"ora": "^9.4.0",
"string-width": "^8.2.0",
"strip-ansi": "^7.2.0"
},
"keywords": [
"jdm",
"electron",
"flask",
"plugin"
],
"author": "JDM-Github",
"license": "MIT",
"jdmPlugin": {
"namespace": "electron-flask",
"description": "Electron + Flask + React project manager",
"commands": [
{
"name": "create",
"description": "Scaffold a new Electron + Flask project",
"fields": [
{
"key": "name",
"label": "Project Name",
"flag": "--name",
"type": "text",
"placeholder": "my-app",
"required": true
},
{
"key": "install-all",
"label": "Install all Dependencies",
"flag": "--install-all",
"disable_when_active": "manual",
"type": "boolean",
"default": false
},
{
"key": "install-frontend",
"label": "Install Frontend Dependency",
"class": "manual",
"flag": "--frontend-install",
"type": "boolean",
"default": true
},
{
"key": "install-backend",
"label": "Install Backend Dependency",
"class": "manual",
"flag": "--backend-install",
"type": "boolean",
"default": false
},
{
"key": "install-electron",
"label": "Install Electron Dependency",
"class": "manual",
"flag": "--electron-install",
"type": "boolean",
"default": true
}
]
},
{
"name": "make",
"description": "Scaffold a new JDMBlueprint + Service and register it in api.json or Scaffold a new JDMEvent",
"fields": [
{
"key": "name",
"label": "API Name",
"flag": "--name",
"type": "text",
"placeholder": "person",
"required": false,
"description": "Name of the API (e.g., 'person' creates PersonBlueprint)"
},
{
"key": "radio_blueprint",
"label": "Activate Blueprint",
"radio": true,
"class": "switch_button",
"class_target": "blueprint",
"type": "boolean",
"default": true,
"description": "Scaffold a REST Blueprint for this API"
},
{
"key": "radio_socket_event",
"label": "Activate Socket Event",
"radio": true,
"class": "switch_button",
"class_target": "socket",
"type": "boolean",
"default": false,
"description": "Scaffold a Socket.IO event handler for this API"
},
{
"key": "prod",
"label": "Disabled on Production",
"class": "blueprint",
"flag": "--prod",
"type": "boolean",
"default": false,
"description": "Disable this Blueprint endpoint in the production environment"
},
{
"key": "deployed",
"label": "Disabled on Deployed",
"class": "blueprint",
"flag": "--deployed",
"type": "boolean",
"default": false,
"description": "Disable this Blueprint endpoint when the app is deployed"
}
]
},
{
"name": "dev",
"description": "Start dev servers",
"fields": []
},
{
"name": "prod",
"description": "Build for production",
"fields": []
},
{
"name": "clean",
"description": "Clean build artifacts",
"fields": []
},
{
"name": "compile",
"description": "Compile frontend, backend, and/or electron",
"fields": [
{
"key": "frontend",
"label": "Build Frontend",
"class": "manual",
"flag": "--frontend",
"type": "boolean",
"default": false,
"description": "Build React frontend and copy to backend/static and electron/test"
},
{
"key": "backend",
"label": "Build Backend",
"class": "manual",
"flag": "--backend",
"type": "boolean",
"default": false,
"description": "Build Flask exe and copy to electron/resources and electron/test"
},
{
"key": "electron",
"label": "Build Electron",
"class": "manual",
"flag": "--electron",
"type": "boolean",
"default": false,
"description": "Package Electron app using current resources"
},
{
"key": "full",
"label": "Full Build",
"flag": "--full",
"disable_when_active": "manual",
"type": "boolean",
"default": false,
"description": "Build everything: frontend + backend + electron"
}
]
},
{
"name": "install",
"description": "Install dependencies",
"fields": [
{
"key": "install-all",
"label": "Install all Dependencies",
"flag": "--install-all",
"disable_when_active": "manual",
"type": "boolean",
"default": true
},
{
"key": "install-frontend",
"label": "Install Frontend Dependency",
"class": "manual",
"flag": "--frontend-install",
"type": "boolean",
"default": false
},
{
"key": "install-backend",
"label": "Install Backend Dependency",
"class": "manual",
"flag": "--backend-install",
"type": "boolean",
"default": false
},
{
"key": "install-electron",
"label": "Install Electron Dependency",
"class": "manual",
"flag": "--electron-install",
"type": "boolean",
"default": false
}
]
},
{
"name": "sync",
"description": "Sync version from config",
"fields": []
},
{
"name": "patch",
"description": "Bump patch version and sync",
"fields": []
}
]
}
}