narrat 3.4.0 → 3.5.1
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/dist/components/hud.vue.d.ts +1 -1
- package/dist/components/saves/save-slot-ui.vue.d.ts +10 -11
- package/dist/config/common-config.d.ts +148 -0
- package/dist/config/config-input.d.ts +1494 -108
- package/dist/config/config-output.d.ts +5 -321
- package/dist/config.d.ts +14 -9
- package/dist/demo/themes-demo.d.ts +1 -0
- package/dist/examples/default/config/defaultGameConfig.d.ts +2 -0
- package/dist/examples/default/scripts/defaultGameScripts.d.ts +1 -0
- package/dist/examples/demo/scripts.d.ts +2 -2
- package/dist/exports/config.d.ts +1 -1
- package/dist/exports/exports.d.ts +1 -0
- package/dist/exports/plugins-list.d.ts +3 -0
- package/dist/exports/plugins.d.ts +1 -69
- package/dist/exports/utils.d.ts +1 -0
- package/dist/hmr/hmr.d.ts +3 -1
- package/dist/narrat.es.js +20692 -20482
- package/dist/narrat.es.js.map +1 -1
- package/dist/narrat.umd.js +134 -133
- package/dist/narrat.umd.js.map +1 -1
- package/dist/plugins/narrat-themes/NarratThemesPlugin.d.ts +41 -0
- package/dist/plugins/narrat-themes/fun-theme/index.d.ts +2 -0
- package/dist/plugins/narrat-themes/index.d.ts +2 -0
- package/dist/plugins/narrat-themes/text-only/index.d.ts +2 -0
- package/dist/plugins/plugins.d.ts +69 -0
- package/dist/stores/config-store.d.ts +12 -3
- package/dist/stores/main-store.d.ts +3279 -1875
- package/dist/stores/settings-store.d.ts +11 -11
- package/dist/style.css +1 -1
- package/dist/types/app-types.d.ts +39 -6
- package/dist/utils/data-helpers.d.ts +249 -141
- package/dist/utils/type-utils.d.ts +3 -0
- package/package.json +3 -2
- package/dist/examples/default/scripts.d.ts +0 -2
|
@@ -23,20 +23,21 @@ export declare function getModifiableDataPinia(): {
|
|
|
23
23
|
scope: {
|
|
24
24
|
[key: string]: any;
|
|
25
25
|
};
|
|
26
|
-
config: import("../
|
|
26
|
+
config: import("../config/common-config").CommonConfig;
|
|
27
27
|
gameOptions: {
|
|
28
28
|
baseAssetsPath?: string | undefined;
|
|
29
29
|
baseDataPath?: string | undefined;
|
|
30
|
-
configPath
|
|
30
|
+
configPath?: string | undefined;
|
|
31
31
|
scripts: {
|
|
32
32
|
code: string;
|
|
33
33
|
fileName: string;
|
|
34
34
|
id: string;
|
|
35
|
+
type: "script";
|
|
35
36
|
}[];
|
|
36
37
|
logging?: boolean | undefined;
|
|
37
38
|
debug?: boolean | undefined;
|
|
38
39
|
container?: string | HTMLElement | undefined;
|
|
39
|
-
|
|
40
|
+
config?: {
|
|
40
41
|
skillChecks?: string | {
|
|
41
42
|
options: {
|
|
42
43
|
extraDicePerLevel?: number | undefined;
|
|
@@ -59,8 +60,18 @@ export declare function getModifiableDataPinia(): {
|
|
|
59
60
|
skill: string;
|
|
60
61
|
difficulty: number;
|
|
61
62
|
}>;
|
|
63
|
+
} | {
|
|
64
|
+
code: string;
|
|
65
|
+
fileName: string;
|
|
66
|
+
id: string;
|
|
67
|
+
type: "yaml";
|
|
62
68
|
} | undefined;
|
|
63
69
|
skills?: string | {
|
|
70
|
+
code: string;
|
|
71
|
+
fileName: string;
|
|
72
|
+
id: string;
|
|
73
|
+
type: "yaml";
|
|
74
|
+
} | {
|
|
64
75
|
skills?: Record<string, {
|
|
65
76
|
hidden?: boolean | undefined;
|
|
66
77
|
name: string;
|
|
@@ -73,20 +84,43 @@ export declare function getModifiableDataPinia(): {
|
|
|
73
84
|
notifyLevelUp: boolean;
|
|
74
85
|
} | undefined;
|
|
75
86
|
} | undefined;
|
|
87
|
+
items?: string | {
|
|
88
|
+
code: string;
|
|
89
|
+
fileName: string;
|
|
90
|
+
id: string;
|
|
91
|
+
type: "yaml";
|
|
92
|
+
} | {
|
|
93
|
+
categories?: {
|
|
94
|
+
title: string;
|
|
95
|
+
id: string;
|
|
96
|
+
}[] | undefined;
|
|
97
|
+
items?: Record<string, {
|
|
98
|
+
onUse?: {
|
|
99
|
+
label: string;
|
|
100
|
+
action: string;
|
|
101
|
+
} | undefined;
|
|
102
|
+
tag?: string | undefined;
|
|
103
|
+
category?: string | undefined;
|
|
104
|
+
showIfEmpty?: boolean | undefined;
|
|
105
|
+
name: string;
|
|
106
|
+
description: string;
|
|
107
|
+
icon: string;
|
|
108
|
+
}> | undefined;
|
|
109
|
+
} | undefined;
|
|
76
110
|
buttons?: string | {
|
|
77
111
|
clickableDuringScriptsByDefault?: boolean | undefined;
|
|
78
112
|
buttons: Record<string, {
|
|
79
113
|
text?: string | undefined;
|
|
114
|
+
action?: string | undefined;
|
|
115
|
+
tag?: string | undefined;
|
|
80
116
|
background?: string | undefined;
|
|
81
117
|
cssClass?: string | undefined;
|
|
82
118
|
anchor?: {
|
|
83
119
|
x: number;
|
|
84
120
|
y: number;
|
|
85
121
|
} | undefined;
|
|
86
|
-
action?: string | undefined;
|
|
87
122
|
actionType?: string | undefined;
|
|
88
123
|
scriptClickable?: boolean | undefined;
|
|
89
|
-
tag?: string | undefined;
|
|
90
124
|
enabled: boolean;
|
|
91
125
|
position: {
|
|
92
126
|
width?: number | undefined;
|
|
@@ -95,24 +129,11 @@ export declare function getModifiableDataPinia(): {
|
|
|
95
129
|
top: number;
|
|
96
130
|
};
|
|
97
131
|
}>;
|
|
98
|
-
} |
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
}[] | undefined;
|
|
104
|
-
items?: Record<string, {
|
|
105
|
-
tag?: string | undefined;
|
|
106
|
-
onUse?: {
|
|
107
|
-
label: string;
|
|
108
|
-
action: string;
|
|
109
|
-
} | undefined;
|
|
110
|
-
category?: string | undefined;
|
|
111
|
-
showIfEmpty?: boolean | undefined;
|
|
112
|
-
name: string;
|
|
113
|
-
description: string;
|
|
114
|
-
icon: string;
|
|
115
|
-
}> | undefined;
|
|
132
|
+
} | {
|
|
133
|
+
code: string;
|
|
134
|
+
fileName: string;
|
|
135
|
+
id: string;
|
|
136
|
+
type: "yaml";
|
|
116
137
|
} | undefined;
|
|
117
138
|
quests?: string | {
|
|
118
139
|
categories: {
|
|
@@ -136,6 +157,11 @@ export declare function getModifiableDataPinia(): {
|
|
|
136
157
|
description: string;
|
|
137
158
|
}>;
|
|
138
159
|
}>;
|
|
160
|
+
} | {
|
|
161
|
+
code: string;
|
|
162
|
+
fileName: string;
|
|
163
|
+
id: string;
|
|
164
|
+
type: "yaml";
|
|
139
165
|
} | undefined;
|
|
140
166
|
tooltips?: string | {
|
|
141
167
|
options: {
|
|
@@ -159,98 +185,77 @@ export declare function getModifiableDataPinia(): {
|
|
|
159
185
|
description: string;
|
|
160
186
|
keywords: string[];
|
|
161
187
|
}[];
|
|
188
|
+
} | {
|
|
189
|
+
code: string;
|
|
190
|
+
fileName: string;
|
|
191
|
+
id: string;
|
|
192
|
+
type: "yaml";
|
|
162
193
|
} | undefined;
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
step: number;
|
|
185
|
-
}) | ({
|
|
186
|
-
description?: string | undefined;
|
|
187
|
-
name: string;
|
|
188
|
-
} & {
|
|
189
|
-
type: "boolean";
|
|
190
|
-
defaultValue: boolean;
|
|
191
|
-
}) | ({
|
|
192
|
-
description?: string | undefined;
|
|
193
|
-
name: string;
|
|
194
|
-
} & {
|
|
195
|
-
type: "string";
|
|
196
|
-
defaultValue: string;
|
|
197
|
-
})> | undefined;
|
|
198
|
-
} | undefined;
|
|
199
|
-
gameFlow?: {
|
|
200
|
-
labelToJumpOnScriptEnd?: string | undefined;
|
|
201
|
-
} | undefined;
|
|
202
|
-
dialogPanel?: {
|
|
203
|
-
width?: number | undefined;
|
|
204
|
-
height?: number | undefined;
|
|
205
|
-
animateText?: boolean | undefined;
|
|
206
|
-
textSpeed?: number | undefined;
|
|
207
|
-
timeBetweenLines?: number | undefined;
|
|
208
|
-
overlayMode?: boolean | undefined;
|
|
209
|
-
rightOffset?: number | undefined;
|
|
210
|
-
bottomOffset?: number | undefined;
|
|
211
|
-
hideDuringTransition?: boolean | undefined;
|
|
212
|
-
showAfterScriptEnd?: boolean | undefined;
|
|
213
|
-
} | undefined;
|
|
214
|
-
splashScreens?: {
|
|
215
|
-
engineSplashScreen?: {
|
|
216
|
-
skip?: boolean | undefined;
|
|
217
|
-
fadeDuration?: number | undefined;
|
|
218
|
-
timeBeforeFadeout?: number | undefined;
|
|
219
|
-
overrideText?: string | undefined;
|
|
220
|
-
overrideLogo?: string | undefined;
|
|
221
|
-
} | undefined;
|
|
222
|
-
gameSplashScreen?: {
|
|
223
|
-
startButtonText?: string | undefined;
|
|
224
|
-
} | undefined;
|
|
194
|
+
animations?: string | {
|
|
195
|
+
keyframes: Record<string, any[]>;
|
|
196
|
+
animations: Record<string, {
|
|
197
|
+
options?: {
|
|
198
|
+
fill?: string | undefined;
|
|
199
|
+
delay?: number | undefined;
|
|
200
|
+
duration?: number | undefined;
|
|
201
|
+
direction?: string | undefined;
|
|
202
|
+
easing?: string | undefined;
|
|
203
|
+
endDelay?: number | undefined;
|
|
204
|
+
iterationStart?: number | undefined;
|
|
205
|
+
iterations?: number | undefined;
|
|
206
|
+
keyframes?: any;
|
|
207
|
+
} | undefined;
|
|
208
|
+
keyframes: string | any[];
|
|
209
|
+
}>;
|
|
210
|
+
} | {
|
|
211
|
+
code: string;
|
|
212
|
+
fileName: string;
|
|
213
|
+
id: string;
|
|
214
|
+
type: "yaml";
|
|
225
215
|
} | undefined;
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
216
|
+
achievements?: string | {
|
|
217
|
+
code: string;
|
|
218
|
+
fileName: string;
|
|
219
|
+
id: string;
|
|
220
|
+
type: "yaml";
|
|
221
|
+
} | {
|
|
222
|
+
categories?: {
|
|
223
|
+
title: string;
|
|
224
|
+
id: string;
|
|
225
|
+
}[] | undefined;
|
|
226
|
+
achievements?: Record<string, {
|
|
227
|
+
icon?: string | undefined;
|
|
228
|
+
category?: string | undefined;
|
|
229
|
+
lockedIcon?: string | undefined;
|
|
230
|
+
secret?: boolean | undefined;
|
|
231
|
+
name: string;
|
|
232
|
+
description: string;
|
|
233
|
+
}> | undefined;
|
|
230
234
|
} | undefined;
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
delay?: number | undefined;
|
|
237
|
-
duration?: number | undefined;
|
|
238
|
-
}> | undefined;
|
|
239
|
-
menuButtons?: Record<string, {
|
|
240
|
-
cssClass?: string | undefined;
|
|
241
|
-
text: string;
|
|
242
|
-
}> | undefined;
|
|
243
|
-
debugging?: {
|
|
244
|
-
showScriptFinishedMessage?: boolean | undefined;
|
|
235
|
+
scripts?: string | string[] | {
|
|
236
|
+
code: string;
|
|
237
|
+
fileName: string;
|
|
238
|
+
id: string;
|
|
239
|
+
type: "yaml";
|
|
245
240
|
} | undefined;
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
241
|
+
choices?: string | {
|
|
242
|
+
code: string;
|
|
243
|
+
fileName: string;
|
|
244
|
+
id: string;
|
|
245
|
+
type: "yaml";
|
|
246
|
+
} | {
|
|
247
|
+
choiceTextTemplate?: string | undefined;
|
|
248
|
+
choicePrompts?: Record<string, {
|
|
249
|
+
cssClass?: string | undefined;
|
|
250
|
+
textTemplate?: string | undefined;
|
|
251
|
+
}> | undefined;
|
|
250
252
|
} | undefined;
|
|
251
|
-
choices?: string | undefined;
|
|
252
|
-
animations?: string | undefined;
|
|
253
253
|
audio: string | {
|
|
254
|
+
code: string;
|
|
255
|
+
fileName: string;
|
|
256
|
+
id: string;
|
|
257
|
+
type: "yaml";
|
|
258
|
+
} | {
|
|
254
259
|
options: {
|
|
255
260
|
volume?: number | undefined;
|
|
256
261
|
defaultMusic?: string | undefined;
|
|
@@ -299,8 +304,18 @@ export declare function getModifiableDataPinia(): {
|
|
|
299
304
|
}> | undefined;
|
|
300
305
|
name: string;
|
|
301
306
|
}>;
|
|
307
|
+
} | {
|
|
308
|
+
code: string;
|
|
309
|
+
fileName: string;
|
|
310
|
+
id: string;
|
|
311
|
+
type: "yaml";
|
|
302
312
|
};
|
|
303
313
|
screens: string | {
|
|
314
|
+
code: string;
|
|
315
|
+
fileName: string;
|
|
316
|
+
id: string;
|
|
317
|
+
type: "yaml";
|
|
318
|
+
} | {
|
|
304
319
|
screens?: Record<string, {
|
|
305
320
|
video?: {
|
|
306
321
|
loop?: boolean | undefined;
|
|
@@ -308,16 +323,16 @@ export declare function getModifiableDataPinia(): {
|
|
|
308
323
|
} | undefined;
|
|
309
324
|
buttons?: (string | ({
|
|
310
325
|
text?: string | undefined;
|
|
326
|
+
action?: string | undefined;
|
|
327
|
+
tag?: string | undefined;
|
|
311
328
|
background?: string | undefined;
|
|
312
329
|
cssClass?: string | undefined;
|
|
313
330
|
anchor?: {
|
|
314
331
|
x: number;
|
|
315
332
|
y: number;
|
|
316
333
|
} | undefined;
|
|
317
|
-
action?: string | undefined;
|
|
318
334
|
actionType?: string | undefined;
|
|
319
335
|
scriptClickable?: boolean | undefined;
|
|
320
|
-
tag?: string | undefined;
|
|
321
336
|
enabled: boolean;
|
|
322
337
|
position: {
|
|
323
338
|
width?: number | undefined;
|
|
@@ -331,39 +346,132 @@ export declare function getModifiableDataPinia(): {
|
|
|
331
346
|
background: string;
|
|
332
347
|
}> | undefined;
|
|
333
348
|
};
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
349
|
+
common: {
|
|
350
|
+
code: string;
|
|
351
|
+
fileName: string;
|
|
352
|
+
id: string;
|
|
353
|
+
type: "yaml";
|
|
354
|
+
} | {
|
|
355
|
+
baseAssetsPath?: string | undefined;
|
|
356
|
+
baseDataPath?: string | undefined;
|
|
357
|
+
images?: Record<string, string> | undefined;
|
|
358
|
+
settings?: {
|
|
359
|
+
customSettings?: Record<string, ({
|
|
360
|
+
description?: string | undefined;
|
|
361
|
+
name: string;
|
|
362
|
+
} & {
|
|
363
|
+
type: "number";
|
|
364
|
+
defaultValue: number;
|
|
365
|
+
step: number;
|
|
366
|
+
minValue: number;
|
|
367
|
+
maxValue: number;
|
|
368
|
+
}) | ({
|
|
369
|
+
description?: string | undefined;
|
|
370
|
+
name: string;
|
|
371
|
+
} & {
|
|
372
|
+
type: "integer";
|
|
373
|
+
defaultValue: number;
|
|
374
|
+
step: number;
|
|
375
|
+
minValue: number;
|
|
376
|
+
maxValue: number;
|
|
377
|
+
}) | ({
|
|
378
|
+
description?: string | undefined;
|
|
379
|
+
name: string;
|
|
380
|
+
} & {
|
|
381
|
+
type: "boolean";
|
|
382
|
+
defaultValue: boolean;
|
|
383
|
+
}) | ({
|
|
384
|
+
description?: string | undefined;
|
|
385
|
+
name: string;
|
|
386
|
+
} & {
|
|
387
|
+
type: "string";
|
|
388
|
+
defaultValue: string;
|
|
389
|
+
})> | undefined;
|
|
390
|
+
} | undefined;
|
|
391
|
+
gameFlow?: {
|
|
392
|
+
labelToJumpOnScriptEnd?: string | undefined;
|
|
393
|
+
} | undefined;
|
|
394
|
+
dialogPanel?: {
|
|
395
|
+
width?: number | undefined;
|
|
396
|
+
height?: number | undefined;
|
|
397
|
+
animateText?: boolean | undefined;
|
|
398
|
+
textSpeed?: number | undefined;
|
|
399
|
+
timeBetweenLines?: number | undefined;
|
|
400
|
+
overlayMode?: boolean | undefined;
|
|
401
|
+
rightOffset?: number | undefined;
|
|
402
|
+
bottomOffset?: number | undefined;
|
|
403
|
+
hideDuringTransition?: boolean | undefined;
|
|
404
|
+
showAfterScriptEnd?: boolean | undefined;
|
|
405
|
+
} | undefined;
|
|
406
|
+
splashScreens?: {
|
|
407
|
+
engineSplashScreen?: {
|
|
408
|
+
skip?: boolean | undefined;
|
|
409
|
+
fadeDuration?: number | undefined;
|
|
410
|
+
timeBeforeFadeout?: number | undefined;
|
|
411
|
+
overrideText?: string | undefined;
|
|
412
|
+
overrideLogo?: string | undefined;
|
|
355
413
|
} | undefined;
|
|
356
|
-
|
|
357
|
-
|
|
414
|
+
gameSplashScreen?: {
|
|
415
|
+
startButtonText?: string | undefined;
|
|
416
|
+
} | undefined;
|
|
417
|
+
} | undefined;
|
|
418
|
+
notifications?: {
|
|
419
|
+
alsoPrintInDialogue?: boolean | undefined;
|
|
420
|
+
timeOnScreen: number;
|
|
421
|
+
} | undefined;
|
|
422
|
+
interactionTags?: Record<string, {
|
|
423
|
+
onlyInteractOutsideOfScripts?: boolean | undefined;
|
|
424
|
+
}> | undefined;
|
|
425
|
+
transitions?: Record<string, {
|
|
426
|
+
delay?: number | undefined;
|
|
427
|
+
duration?: number | undefined;
|
|
428
|
+
}> | undefined;
|
|
429
|
+
menuButtons?: Record<string, {
|
|
430
|
+
cssClass?: string | undefined;
|
|
431
|
+
text: string;
|
|
432
|
+
}> | undefined;
|
|
433
|
+
debugging?: {
|
|
434
|
+
showScriptFinishedMessage?: boolean | undefined;
|
|
435
|
+
} | undefined;
|
|
436
|
+
saves?: {
|
|
437
|
+
runOnReload?: string | undefined;
|
|
438
|
+
slots: number;
|
|
439
|
+
mode: string;
|
|
440
|
+
} | undefined;
|
|
441
|
+
gameTitle: string;
|
|
442
|
+
saveFileName: string;
|
|
443
|
+
layout: {
|
|
444
|
+
minTextWidth?: number | undefined;
|
|
445
|
+
defaultFontSize?: number | undefined;
|
|
446
|
+
backgrounds: {
|
|
447
|
+
width: number;
|
|
448
|
+
height: number;
|
|
449
|
+
};
|
|
450
|
+
dialogBottomPadding: string | number;
|
|
451
|
+
verticalLayoutThreshold: number;
|
|
452
|
+
portraits: {
|
|
453
|
+
offset?: {
|
|
454
|
+
landscape?: {
|
|
455
|
+
right: number;
|
|
456
|
+
bottom: number;
|
|
457
|
+
} | undefined;
|
|
458
|
+
portrait?: {
|
|
459
|
+
right: number;
|
|
460
|
+
bottom: number;
|
|
461
|
+
} | undefined;
|
|
462
|
+
} | undefined;
|
|
463
|
+
width: number;
|
|
464
|
+
height: number;
|
|
465
|
+
};
|
|
358
466
|
};
|
|
467
|
+
hudStats: Record<string, {
|
|
468
|
+
minValue?: number | undefined;
|
|
469
|
+
maxValue?: number | undefined;
|
|
470
|
+
name: string;
|
|
471
|
+
icon: string;
|
|
472
|
+
startingValue: number;
|
|
473
|
+
}>;
|
|
359
474
|
};
|
|
360
|
-
hudStats: Record<string, {
|
|
361
|
-
maxValue?: number | undefined;
|
|
362
|
-
minValue?: number | undefined;
|
|
363
|
-
name: string;
|
|
364
|
-
icon: string;
|
|
365
|
-
startingValue: number;
|
|
366
|
-
}>;
|
|
367
475
|
} | undefined;
|
|
368
476
|
};
|
|
369
477
|
baseSettings: {
|
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
export declare const generateObjectFromList: <T extends readonly string[]>(list: T) => { [K in T[number]]: K; };
|
|
2
2
|
export declare const isPromise: <T>(value: any) => value is Promise<T>;
|
|
3
|
+
export type DeepPartial<T> = T extends object ? {
|
|
4
|
+
[P in keyof T]?: DeepPartial<T[P]>;
|
|
5
|
+
} : T;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "narrat",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "narrat narrative engine",
|
|
5
5
|
"main": "dist/narrat.umd.js",
|
|
6
6
|
"module": "dist/narrat.es.js",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"vue": "^3.3.4"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@sinclair/typebox": "^0.
|
|
64
|
+
"@sinclair/typebox": "^0.31.18",
|
|
65
65
|
"ajv": "^8.11.0",
|
|
66
66
|
"ajv-formats": "^2.1.1",
|
|
67
67
|
"clone-deep": "^4.0.1",
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"kolorist": "^1.5.1",
|
|
101
101
|
"pinia": "^2.1.4",
|
|
102
102
|
"prettier": "^3.0.0",
|
|
103
|
+
"rollup-plugin-visualizer": "^5.9.2",
|
|
103
104
|
"shelljs": "^0.8.5",
|
|
104
105
|
"shx": "^0.3.4",
|
|
105
106
|
"ts-prune": "^0.10.3",
|