@veolab/discoverylab 1.4.2 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/dist/{chunk-MDKX7CCB.js → chunk-2UUMLAVR.js} +71 -8695
- package/dist/{chunk-34KRJWZL.js → chunk-34GGYFXX.js} +1 -1
- package/dist/{chunk-DGXAP477.js → chunk-3ERJNXYM.js} +1 -1
- package/dist/{chunk-VYYAP5G5.js → chunk-6GK5K6CS.js} +2 -2
- package/dist/{chunk-DKAX5RCX.js → chunk-7R5YNOXE.js} +1 -1
- package/dist/{chunk-RCY26WEK.js → chunk-CUBQRT5L.js} +2 -2
- package/dist/{chunk-EU63HPKT.js → chunk-GRU332L4.js} +1 -1
- package/dist/{chunk-YNLUOZSZ.js → chunk-HB3YPWF3.js} +6 -6
- package/dist/{chunk-SWZIBO2R.js → chunk-ILDZMFOR.js} +1 -1
- package/dist/{chunk-QMUEC6B5.js → chunk-PMCXEA7J.js} +2 -2
- package/dist/chunk-R5U7XKVJ.js +16 -0
- package/dist/{chunk-XAMA3JJG.js → chunk-YYOK2RF7.js} +1 -1
- package/dist/cli.js +29 -29
- package/dist/{db-745LC5YC.js → db-5ECN3O7F.js} +2 -2
- package/dist/{document-AE4XI2CP.js → document-64X4JTLM.js} +1 -1
- package/dist/{esvp-4LIAU76K.js → esvp-DKZXSABS.js} +3 -3
- package/dist/{esvp-mobile-FKFHDS5Q.js → esvp-mobile-TMNCSWHF.js} +4 -4
- package/dist/{frames-RCNLSDD6.js → frames-2NFCSKXQ.js} +3 -3
- package/dist/{gridCompositor-VUWBZXYL.js → gridCompositor-WC4KSGSQ.js} +1 -1
- package/dist/index.js +12 -12
- package/dist/{notion-api-OXSWOJPZ.js → notion-api-ZHGIYCQU.js} +1 -1
- package/dist/{ocr-FXRLEP66.js → ocr-YUYGFUKU.js} +1 -1
- package/dist/{playwright-GYKUH34L.js → playwright-JXLD4CM5.js} +3 -3
- package/dist/{renderer-D22GCMMD.js → renderer-KHPDJF5E.js} +4 -4
- package/dist/{server-NTT2XGCC.js → server-OVOACIOJ.js} +1 -1
- package/dist/server-QFNKZCOJ.js +24 -0
- package/dist/{setup-O6WQQAGP.js → setup-6JJYKKBS.js} +3 -3
- package/dist/{tools-FVVWKEGC.js → tools-Q7OZO732.js} +9 -9
- package/dist/visualizations/app-flow-map.html +177 -0
- package/dist/visualizations/device-showcase.html +150 -0
- package/dist/visualizations/flow-diagram.html +181 -0
- package/dist/visualizations/metrics-dashboard.html +263 -0
- package/package.json +3 -3
- package/dist/chunk-4VNS5WPM.js +0 -42
- package/dist/server-3DEELYXB.js +0 -24
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Metrics Dashboard</title>
|
|
7
|
+
<style>
|
|
8
|
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
9
|
+
body {
|
|
10
|
+
background: #0f0f1a;
|
|
11
|
+
color: #fff;
|
|
12
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
13
|
+
min-height: 100vh;
|
|
14
|
+
padding: 24px;
|
|
15
|
+
}
|
|
16
|
+
.dashboard { max-width: 960px; margin: 0 auto; }
|
|
17
|
+
.header { margin-bottom: 24px; }
|
|
18
|
+
.header h1 { font-size: 22px; font-weight: 700; }
|
|
19
|
+
.header p { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }
|
|
20
|
+
|
|
21
|
+
/* Metrics cards */
|
|
22
|
+
.metrics-grid {
|
|
23
|
+
display: grid;
|
|
24
|
+
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
25
|
+
gap: 12px;
|
|
26
|
+
margin-bottom: 24px;
|
|
27
|
+
}
|
|
28
|
+
.metric-card {
|
|
29
|
+
background: rgba(255,255,255,0.04);
|
|
30
|
+
border: 1px solid rgba(255,255,255,0.08);
|
|
31
|
+
border-radius: 12px;
|
|
32
|
+
padding: 16px;
|
|
33
|
+
opacity: 0;
|
|
34
|
+
transform: scale(0.95);
|
|
35
|
+
animation: popIn 0.4s forwards;
|
|
36
|
+
}
|
|
37
|
+
.metric-card:nth-child(1) { animation-delay: 0.1s; }
|
|
38
|
+
.metric-card:nth-child(2) { animation-delay: 0.2s; }
|
|
39
|
+
.metric-card:nth-child(3) { animation-delay: 0.3s; }
|
|
40
|
+
.metric-card:nth-child(4) { animation-delay: 0.4s; }
|
|
41
|
+
@keyframes popIn { to { opacity: 1; transform: scale(1); } }
|
|
42
|
+
.metric-value {
|
|
43
|
+
font-size: 32px; font-weight: 800;
|
|
44
|
+
background: linear-gradient(135deg, #6366f1, #a78bfa);
|
|
45
|
+
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
|
|
46
|
+
background-clip: text;
|
|
47
|
+
}
|
|
48
|
+
.metric-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
|
|
49
|
+
|
|
50
|
+
/* Two-column layout for charts + screens */
|
|
51
|
+
.content-grid {
|
|
52
|
+
display: grid;
|
|
53
|
+
grid-template-columns: 1fr 1fr;
|
|
54
|
+
gap: 16px;
|
|
55
|
+
margin-bottom: 24px;
|
|
56
|
+
}
|
|
57
|
+
@media (max-width: 700px) { .content-grid { grid-template-columns: 1fr; } }
|
|
58
|
+
|
|
59
|
+
.section-card {
|
|
60
|
+
background: rgba(255,255,255,0.03);
|
|
61
|
+
border: 1px solid rgba(255,255,255,0.06);
|
|
62
|
+
border-radius: 12px;
|
|
63
|
+
padding: 16px;
|
|
64
|
+
}
|
|
65
|
+
.section-title { font-size: 13px; font-weight: 600; margin-bottom: 12px; color: rgba(255,255,255,0.8); }
|
|
66
|
+
|
|
67
|
+
/* Bar chart */
|
|
68
|
+
.bar-chart { display: flex; flex-direction: column; gap: 6px; }
|
|
69
|
+
.bar-row {
|
|
70
|
+
display: grid; grid-template-columns: 90px 1fr 32px;
|
|
71
|
+
gap: 8px; align-items: center;
|
|
72
|
+
opacity: 0; animation: slideIn 0.5s forwards;
|
|
73
|
+
}
|
|
74
|
+
.bar-row:nth-child(1) { animation-delay: 0.5s; }
|
|
75
|
+
.bar-row:nth-child(2) { animation-delay: 0.6s; }
|
|
76
|
+
.bar-row:nth-child(3) { animation-delay: 0.7s; }
|
|
77
|
+
.bar-row:nth-child(4) { animation-delay: 0.8s; }
|
|
78
|
+
@keyframes slideIn { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
|
|
79
|
+
.bar-label { font-size: 10px; color: rgba(255,255,255,0.6); text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
80
|
+
.bar-track { height: 20px; background: rgba(255,255,255,0.06); border-radius: 5px; overflow: hidden; }
|
|
81
|
+
.bar-fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, #6366f1, #818cf8); transition: width 1s ease; width: 0; }
|
|
82
|
+
.bar-value { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 600; }
|
|
83
|
+
|
|
84
|
+
/* Screen thumbnails strip */
|
|
85
|
+
.screens-strip {
|
|
86
|
+
display: flex;
|
|
87
|
+
gap: 8px;
|
|
88
|
+
overflow-x: auto;
|
|
89
|
+
padding: 4px 0;
|
|
90
|
+
}
|
|
91
|
+
.screen-thumb {
|
|
92
|
+
flex-shrink: 0;
|
|
93
|
+
width: 80px;
|
|
94
|
+
border-radius: 8px;
|
|
95
|
+
overflow: hidden;
|
|
96
|
+
border: 1px solid rgba(255,255,255,0.1);
|
|
97
|
+
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
|
|
98
|
+
opacity: 0;
|
|
99
|
+
animation: thumbIn 0.4s forwards;
|
|
100
|
+
position: relative;
|
|
101
|
+
transition: transform 0.2s;
|
|
102
|
+
}
|
|
103
|
+
.screen-thumb:hover { transform: scale(1.08); }
|
|
104
|
+
.screen-thumb img { width: 100%; height: auto; display: block; }
|
|
105
|
+
.screen-thumb-label {
|
|
106
|
+
position: absolute; bottom: 0; left: 0; right: 0;
|
|
107
|
+
background: linear-gradient(transparent, rgba(0,0,0,0.8));
|
|
108
|
+
padding: 12px 4px 4px;
|
|
109
|
+
font-size: 8px; color: rgba(255,255,255,0.8);
|
|
110
|
+
text-align: center;
|
|
111
|
+
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
|
|
112
|
+
}
|
|
113
|
+
.screen-thumb:nth-child(1) { animation-delay: 0.3s; }
|
|
114
|
+
.screen-thumb:nth-child(2) { animation-delay: 0.4s; }
|
|
115
|
+
.screen-thumb:nth-child(3) { animation-delay: 0.5s; }
|
|
116
|
+
.screen-thumb:nth-child(4) { animation-delay: 0.6s; }
|
|
117
|
+
.screen-thumb:nth-child(5) { animation-delay: 0.7s; }
|
|
118
|
+
.screen-thumb:nth-child(6) { animation-delay: 0.8s; }
|
|
119
|
+
@keyframes thumbIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
|
|
120
|
+
|
|
121
|
+
/* Flow steps with thumbnails */
|
|
122
|
+
.flow-steps { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
|
|
123
|
+
.flow-step {
|
|
124
|
+
display: flex; align-items: center; gap: 10px;
|
|
125
|
+
padding: 8px 10px;
|
|
126
|
+
background: rgba(99,102,241,0.06);
|
|
127
|
+
border: 1px solid rgba(99,102,241,0.12);
|
|
128
|
+
border-radius: 10px;
|
|
129
|
+
opacity: 0;
|
|
130
|
+
animation: fadeIn 0.3s forwards;
|
|
131
|
+
}
|
|
132
|
+
@keyframes fadeIn { to { opacity: 1; } }
|
|
133
|
+
.flow-step-num {
|
|
134
|
+
width: 22px; height: 22px; border-radius: 50%;
|
|
135
|
+
background: #6366f1; color: #fff;
|
|
136
|
+
display: flex; align-items: center; justify-content: center;
|
|
137
|
+
font-size: 10px; font-weight: 700; flex-shrink: 0;
|
|
138
|
+
}
|
|
139
|
+
.flow-step-thumb {
|
|
140
|
+
width: 36px; height: 64px; border-radius: 4px;
|
|
141
|
+
overflow: hidden; flex-shrink: 0;
|
|
142
|
+
border: 1px solid rgba(255,255,255,0.1);
|
|
143
|
+
}
|
|
144
|
+
.flow-step-thumb img { width: 100%; height: 100%; object-fit: cover; }
|
|
145
|
+
.flow-step-label { font-size: 11px; color: rgba(255,255,255,0.7); flex: 1; }
|
|
146
|
+
|
|
147
|
+
.footer {
|
|
148
|
+
text-align: center; margin-top: 24px;
|
|
149
|
+
font-size: 10px; color: rgba(255,255,255,0.2);
|
|
150
|
+
}
|
|
151
|
+
</style>
|
|
152
|
+
</head>
|
|
153
|
+
<body>
|
|
154
|
+
<div class="dashboard">
|
|
155
|
+
<div class="header">
|
|
156
|
+
<h1 id="vizTitle">Analysis Dashboard</h1>
|
|
157
|
+
<p id="vizSubtitle"></p>
|
|
158
|
+
</div>
|
|
159
|
+
|
|
160
|
+
<div class="metrics-grid" id="metricsGrid"></div>
|
|
161
|
+
|
|
162
|
+
<!-- Screen thumbnails strip -->
|
|
163
|
+
<div class="section-card" style="margin-bottom: 16px;" id="screensSection">
|
|
164
|
+
<div class="section-title">Screens Captured</div>
|
|
165
|
+
<div class="screens-strip" id="screensStrip"></div>
|
|
166
|
+
</div>
|
|
167
|
+
|
|
168
|
+
<div class="content-grid">
|
|
169
|
+
<!-- Left: Bar chart -->
|
|
170
|
+
<div class="section-card">
|
|
171
|
+
<div class="section-title">UI Elements Distribution</div>
|
|
172
|
+
<div class="bar-chart" id="barChart"></div>
|
|
173
|
+
</div>
|
|
174
|
+
|
|
175
|
+
<!-- Right: Flow steps with thumbnails -->
|
|
176
|
+
<div class="section-card">
|
|
177
|
+
<div class="section-title">User Flow</div>
|
|
178
|
+
<div class="flow-steps" id="flowSteps"></div>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
|
|
182
|
+
<div class="footer" id="vizFooter">Generated by DiscoveryLab</div>
|
|
183
|
+
</div>
|
|
184
|
+
<script>
|
|
185
|
+
const DATA = window.__VISUALIZATION_DATA__ || {};
|
|
186
|
+
const screens = DATA.screens || [];
|
|
187
|
+
|
|
188
|
+
if (DATA.title) document.getElementById('vizTitle').textContent = DATA.title;
|
|
189
|
+
if (DATA.subtitle) document.getElementById('vizSubtitle').textContent = DATA.subtitle;
|
|
190
|
+
|
|
191
|
+
// Metrics cards
|
|
192
|
+
const metrics = DATA.metrics || [
|
|
193
|
+
{ value: DATA.screenCount || 0, label: 'Screens Analyzed' },
|
|
194
|
+
{ value: DATA.flowSteps || 0, label: 'Flow Steps' },
|
|
195
|
+
{ value: DATA.uiElements || 0, label: 'UI Elements' },
|
|
196
|
+
{ value: DATA.platform || 'N/A', label: 'Platform' },
|
|
197
|
+
];
|
|
198
|
+
const metricsGrid = document.getElementById('metricsGrid');
|
|
199
|
+
metrics.forEach(m => {
|
|
200
|
+
const card = document.createElement('div');
|
|
201
|
+
card.className = 'metric-card';
|
|
202
|
+
card.innerHTML = `
|
|
203
|
+
<div class="metric-value">${m.value}</div>
|
|
204
|
+
<div class="metric-label">${m.label}</div>
|
|
205
|
+
`;
|
|
206
|
+
metricsGrid.appendChild(card);
|
|
207
|
+
});
|
|
208
|
+
|
|
209
|
+
// Screen thumbnails strip
|
|
210
|
+
const screensStrip = document.getElementById('screensStrip');
|
|
211
|
+
const screensSection = document.getElementById('screensSection');
|
|
212
|
+
if (screens.length > 0) {
|
|
213
|
+
screens.forEach((screen, i) => {
|
|
214
|
+
const el = document.createElement('div');
|
|
215
|
+
el.className = 'screen-thumb';
|
|
216
|
+
el.style.animationDelay = (0.3 + i * 0.1) + 's';
|
|
217
|
+
el.innerHTML = `
|
|
218
|
+
<img src="${screen.imageUrl}" alt="Screen ${i + 1}">
|
|
219
|
+
<div class="screen-thumb-label">${screen.label || 'Screen ' + (i + 1)}</div>
|
|
220
|
+
`;
|
|
221
|
+
screensStrip.appendChild(el);
|
|
222
|
+
});
|
|
223
|
+
} else {
|
|
224
|
+
screensSection.style.display = 'none';
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
// Bar chart
|
|
228
|
+
const categories = DATA.categories || [];
|
|
229
|
+
const barChart = document.getElementById('barChart');
|
|
230
|
+
const maxVal = Math.max(...categories.map(c => c.count), 1);
|
|
231
|
+
categories.forEach(cat => {
|
|
232
|
+
const pct = Math.round((cat.count / maxVal) * 100);
|
|
233
|
+
const row = document.createElement('div');
|
|
234
|
+
row.className = 'bar-row';
|
|
235
|
+
row.innerHTML = `
|
|
236
|
+
<div class="bar-label" title="${cat.name}">${cat.name}</div>
|
|
237
|
+
<div class="bar-track"><div class="bar-fill" style="width: 0%"></div></div>
|
|
238
|
+
<div class="bar-value">${cat.count}</div>
|
|
239
|
+
`;
|
|
240
|
+
barChart.appendChild(row);
|
|
241
|
+
requestAnimationFrame(() => {
|
|
242
|
+
setTimeout(() => { row.querySelector('.bar-fill').style.width = pct + '%'; }, 800);
|
|
243
|
+
});
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
// Flow steps with thumbnails
|
|
247
|
+
const steps = DATA.steps || [];
|
|
248
|
+
const flowSteps = document.getElementById('flowSteps');
|
|
249
|
+
steps.forEach((step, i) => {
|
|
250
|
+
const screen = screens[i];
|
|
251
|
+
const el = document.createElement('div');
|
|
252
|
+
el.className = 'flow-step';
|
|
253
|
+
el.style.animationDelay = (0.8 + i * 0.1) + 's';
|
|
254
|
+
el.innerHTML = `
|
|
255
|
+
<div class="flow-step-num">${i + 1}</div>
|
|
256
|
+
${screen ? `<div class="flow-step-thumb"><img src="${screen.imageUrl}" alt=""></div>` : ''}
|
|
257
|
+
<div class="flow-step-label">${step.label || step}</div>
|
|
258
|
+
`;
|
|
259
|
+
flowSteps.appendChild(el);
|
|
260
|
+
});
|
|
261
|
+
</script>
|
|
262
|
+
</body>
|
|
263
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veolab/discoverylab",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "AI-powered app testing & evidence generator - Claude Code Plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"dev": "tsx watch src/cli.ts serve",
|
|
13
|
-
"build": "tsup src/index.ts src/cli.ts --format esm --dts --clean && cp src/web/index.html dist/index.html && node scripts/build-host-runtime.mjs --best-effort",
|
|
13
|
+
"build": "tsup src/index.ts src/cli.ts --format esm --dts --clean && cp src/web/index.html dist/index.html && mkdir -p dist/visualizations && cp src/core/visualizations/templates/*.html dist/visualizations/ && node scripts/build-host-runtime.mjs --best-effort",
|
|
14
14
|
"build:host-runtime": "node scripts/build-host-runtime.mjs",
|
|
15
15
|
"pack:local": "npm run build && npm run build:host-runtime && node scripts/verify-host-runtime-bundle.mjs && npm pack",
|
|
16
16
|
"prepack": "npm run build && npm run build:host-runtime && node scripts/verify-host-runtime-bundle.mjs",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"claude-plugin": {
|
|
69
69
|
"name": "DiscoveryLab",
|
|
70
70
|
"description": "AI-powered app testing & evidence generator",
|
|
71
|
-
"version": "1.4.
|
|
71
|
+
"version": "1.4.4",
|
|
72
72
|
"tools": [
|
|
73
73
|
"dlab.capture.screen",
|
|
74
74
|
"dlab.capture.emulator",
|
package/dist/chunk-4VNS5WPM.js
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
8
|
-
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
9
|
-
}) : x)(function(x) {
|
|
10
|
-
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
11
|
-
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
12
|
-
});
|
|
13
|
-
var __commonJS = (cb, mod) => function __require2() {
|
|
14
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
15
|
-
};
|
|
16
|
-
var __export = (target, all) => {
|
|
17
|
-
for (var name in all)
|
|
18
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
19
|
-
};
|
|
20
|
-
var __copyProps = (to, from, except, desc) => {
|
|
21
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
22
|
-
for (let key of __getOwnPropNames(from))
|
|
23
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
24
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
25
|
-
}
|
|
26
|
-
return to;
|
|
27
|
-
};
|
|
28
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
29
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
30
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
31
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
32
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
33
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
34
|
-
mod
|
|
35
|
-
));
|
|
36
|
-
|
|
37
|
-
export {
|
|
38
|
-
__require,
|
|
39
|
-
__commonJS,
|
|
40
|
-
__export,
|
|
41
|
-
__toESM
|
|
42
|
-
};
|
package/dist/server-3DEELYXB.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
app,
|
|
3
|
-
getServerPort,
|
|
4
|
-
startServer,
|
|
5
|
-
stopServer
|
|
6
|
-
} from "./chunk-MDKX7CCB.js";
|
|
7
|
-
import "./chunk-34KRJWZL.js";
|
|
8
|
-
import "./chunk-VYYAP5G5.js";
|
|
9
|
-
import "./chunk-DKAX5RCX.js";
|
|
10
|
-
import "./chunk-DGXAP477.js";
|
|
11
|
-
import "./chunk-SWZIBO2R.js";
|
|
12
|
-
import "./chunk-LB3RNE3O.js";
|
|
13
|
-
import "./chunk-EU63HPKT.js";
|
|
14
|
-
import "./chunk-6EGBXRDK.js";
|
|
15
|
-
import "./chunk-SLNJEF32.js";
|
|
16
|
-
import "./chunk-XAMA3JJG.js";
|
|
17
|
-
import "./chunk-XFVDP332.js";
|
|
18
|
-
import "./chunk-4VNS5WPM.js";
|
|
19
|
-
export {
|
|
20
|
-
app,
|
|
21
|
-
getServerPort,
|
|
22
|
-
startServer,
|
|
23
|
-
stopServer
|
|
24
|
-
};
|