vue-phaserjs 2.28.0 → 2.29.0
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/README.md +13 -2
- package/dist/components/BitmapText.vue.d.ts +8 -0
- package/dist/components/Image.vue.d.ts +8 -0
- package/dist/components/PathFollower.vue.d.ts +8 -0
- package/dist/components/RenderTexture.vue.d.ts +8 -0
- package/dist/components/Sprite.vue.d.ts +8 -0
- package/dist/components/Text.vue.d.ts +8 -0
- package/dist/components/Video.vue.d.ts +8 -0
- package/dist/util/setterMap/shared/AnimationSetterMap.d.ts +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -25,8 +25,8 @@ pnpm i vue-phaserjs @esposter/shared parse-tmx vue phaser phaser4-rex-plugins pi
|
|
|
25
25
|
|
|
26
26
|
Add the type declaration files so scene key types and custom plugins get proper intellisense:
|
|
27
27
|
|
|
28
|
-
- [`phaser.d.ts`](https://github.com/Esposter/Esposter/blob/main/packages/app/
|
|
29
|
-
- [`vue-phaserjs.d.ts`](https://github.com/Esposter/Esposter/blob/main/packages/app/
|
|
28
|
+
- [`phaser.d.ts`](https://github.com/Esposter/Esposter/blob/main/packages/app/app/types/phaser.d.ts) — narrows scene key types
|
|
29
|
+
- [`vue-phaserjs.d.ts`](https://github.com/Esposter/Esposter/blob/main/packages/app/app/types/vue-phaser.d.ts) — provides custom plugin types
|
|
30
30
|
|
|
31
31
|
## <a name="documentation">📖 Documentation</a>
|
|
32
32
|
|
|
@@ -43,6 +43,17 @@ See the reference implementation in [`packages/app/app/pages/dungeons.vue`](http
|
|
|
43
43
|
- Scene lifecycle hooks aligned with Vue's `onMounted` / `onUnmounted`
|
|
44
44
|
- TypeScript-first with full generic scene key support
|
|
45
45
|
|
|
46
|
+
### Commands
|
|
47
|
+
|
|
48
|
+
Run from `packages/vue-phaserjs/`:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
pnpm build # compile to dist/
|
|
52
|
+
pnpm test # vitest watch mode (coverage is run from the repo root)
|
|
53
|
+
pnpm lint:fix # auto-fix lint
|
|
54
|
+
pnpm typecheck # type check
|
|
55
|
+
```
|
|
56
|
+
|
|
46
57
|
## <a name="license">⚖️ License</a>
|
|
47
58
|
|
|
48
59
|
This project is licensed under the [Apache-2.0 license](https://github.com/Esposter/Esposter/blob/main/LICENSE).
|
|
@@ -142,6 +142,10 @@ declare const __VLS_export: import('vue').DefineComponent<BitmapTextProps, {}, {
|
|
|
142
142
|
"update:tintTopRight": (args_0?: number | undefined) => any;
|
|
143
143
|
"update:tintBottomLeft": (args_0?: number | undefined) => any;
|
|
144
144
|
"update:tintBottomRight": (args_0?: number | undefined) => any;
|
|
145
|
+
"update:tint2TopLeft": (args_0?: number | undefined) => any;
|
|
146
|
+
"update:tint2TopRight": (args_0?: number | undefined) => any;
|
|
147
|
+
"update:tint2BottomLeft": (args_0?: number | undefined) => any;
|
|
148
|
+
"update:tint2BottomRight": (args_0?: number | undefined) => any;
|
|
145
149
|
"update:tintMode": (args_0?: Phaser.TintModes | undefined) => any;
|
|
146
150
|
"update:tint": (args_0?: number | undefined) => any;
|
|
147
151
|
"update:isTinted": (args_0?: boolean | undefined) => any;
|
|
@@ -290,6 +294,10 @@ declare const __VLS_export: import('vue').DefineComponent<BitmapTextProps, {}, {
|
|
|
290
294
|
"onUpdate:tintTopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
291
295
|
"onUpdate:tintBottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
292
296
|
"onUpdate:tintBottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
297
|
+
"onUpdate:tint2TopLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
298
|
+
"onUpdate:tint2TopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
299
|
+
"onUpdate:tint2BottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
300
|
+
"onUpdate:tint2BottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
293
301
|
"onUpdate:tintMode"?: ((args_0?: Phaser.TintModes | undefined) => any) | undefined;
|
|
294
302
|
"onUpdate:tint"?: ((args_0?: number | undefined) => any) | undefined;
|
|
295
303
|
"onUpdate:isTinted"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -152,6 +152,10 @@ declare const __VLS_export: import('vue').DefineComponent<ImageProps, {}, {}, {}
|
|
|
152
152
|
"update:tintTopRight": (args_0?: number | undefined) => any;
|
|
153
153
|
"update:tintBottomLeft": (args_0?: number | undefined) => any;
|
|
154
154
|
"update:tintBottomRight": (args_0?: number | undefined) => any;
|
|
155
|
+
"update:tint2TopLeft": (args_0?: number | undefined) => any;
|
|
156
|
+
"update:tint2TopRight": (args_0?: number | undefined) => any;
|
|
157
|
+
"update:tint2BottomLeft": (args_0?: number | undefined) => any;
|
|
158
|
+
"update:tint2BottomRight": (args_0?: number | undefined) => any;
|
|
155
159
|
"update:tintMode": (args_0?: Phaser.TintModes | undefined) => any;
|
|
156
160
|
"update:tint": (args_0?: number | undefined) => any;
|
|
157
161
|
"update:isTinted": (args_0?: boolean | undefined) => any;
|
|
@@ -303,6 +307,10 @@ declare const __VLS_export: import('vue').DefineComponent<ImageProps, {}, {}, {}
|
|
|
303
307
|
"onUpdate:tintTopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
304
308
|
"onUpdate:tintBottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
305
309
|
"onUpdate:tintBottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
310
|
+
"onUpdate:tint2TopLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
311
|
+
"onUpdate:tint2TopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
312
|
+
"onUpdate:tint2BottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
313
|
+
"onUpdate:tint2BottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
306
314
|
"onUpdate:tintMode"?: ((args_0?: Phaser.TintModes | undefined) => any) | undefined;
|
|
307
315
|
"onUpdate:tint"?: ((args_0?: number | undefined) => any) | undefined;
|
|
308
316
|
"onUpdate:isTinted"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -150,6 +150,10 @@ declare const __VLS_export: import('vue').DefineComponent<PathFollowerProps, {},
|
|
|
150
150
|
"update:tintTopRight": (args_0?: number | undefined) => any;
|
|
151
151
|
"update:tintBottomLeft": (args_0?: number | undefined) => any;
|
|
152
152
|
"update:tintBottomRight": (args_0?: number | undefined) => any;
|
|
153
|
+
"update:tint2TopLeft": (args_0?: number | undefined) => any;
|
|
154
|
+
"update:tint2TopRight": (args_0?: number | undefined) => any;
|
|
155
|
+
"update:tint2BottomLeft": (args_0?: number | undefined) => any;
|
|
156
|
+
"update:tint2BottomRight": (args_0?: number | undefined) => any;
|
|
153
157
|
"update:tintMode": (args_0?: Phaser.TintModes | undefined) => any;
|
|
154
158
|
"update:tint": (args_0?: number | undefined) => any;
|
|
155
159
|
"update:isTinted": (args_0?: boolean | undefined) => any;
|
|
@@ -306,6 +310,10 @@ declare const __VLS_export: import('vue').DefineComponent<PathFollowerProps, {},
|
|
|
306
310
|
"onUpdate:tintTopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
307
311
|
"onUpdate:tintBottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
308
312
|
"onUpdate:tintBottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
313
|
+
"onUpdate:tint2TopLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
314
|
+
"onUpdate:tint2TopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
315
|
+
"onUpdate:tint2BottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
316
|
+
"onUpdate:tint2BottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
309
317
|
"onUpdate:tintMode"?: ((args_0?: Phaser.TintModes | undefined) => any) | undefined;
|
|
310
318
|
"onUpdate:tint"?: ((args_0?: number | undefined) => any) | undefined;
|
|
311
319
|
"onUpdate:isTinted"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -148,6 +148,10 @@ declare const __VLS_export: import('vue').DefineComponent<RenderTextureProps, {}
|
|
|
148
148
|
"update:tintTopRight": (args_0?: number | undefined) => any;
|
|
149
149
|
"update:tintBottomLeft": (args_0?: number | undefined) => any;
|
|
150
150
|
"update:tintBottomRight": (args_0?: number | undefined) => any;
|
|
151
|
+
"update:tint2TopLeft": (args_0?: number | undefined) => any;
|
|
152
|
+
"update:tint2TopRight": (args_0?: number | undefined) => any;
|
|
153
|
+
"update:tint2BottomLeft": (args_0?: number | undefined) => any;
|
|
154
|
+
"update:tint2BottomRight": (args_0?: number | undefined) => any;
|
|
151
155
|
"update:tintMode": (args_0?: Phaser.TintModes | undefined) => any;
|
|
152
156
|
"update:tint": (args_0?: number | undefined) => any;
|
|
153
157
|
"update:isTinted": (args_0?: boolean | undefined) => any;
|
|
@@ -293,6 +297,10 @@ declare const __VLS_export: import('vue').DefineComponent<RenderTextureProps, {}
|
|
|
293
297
|
"onUpdate:tintTopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
294
298
|
"onUpdate:tintBottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
295
299
|
"onUpdate:tintBottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
300
|
+
"onUpdate:tint2TopLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
301
|
+
"onUpdate:tint2TopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
302
|
+
"onUpdate:tint2BottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
303
|
+
"onUpdate:tint2BottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
296
304
|
"onUpdate:tintMode"?: ((args_0?: Phaser.TintModes | undefined) => any) | undefined;
|
|
297
305
|
"onUpdate:tint"?: ((args_0?: number | undefined) => any) | undefined;
|
|
298
306
|
"onUpdate:isTinted"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -152,6 +152,10 @@ declare const __VLS_export: import('vue').DefineComponent<SpriteProps, {}, {}, {
|
|
|
152
152
|
"update:tintTopRight": (args_0?: number | undefined) => any;
|
|
153
153
|
"update:tintBottomLeft": (args_0?: number | undefined) => any;
|
|
154
154
|
"update:tintBottomRight": (args_0?: number | undefined) => any;
|
|
155
|
+
"update:tint2TopLeft": (args_0?: number | undefined) => any;
|
|
156
|
+
"update:tint2TopRight": (args_0?: number | undefined) => any;
|
|
157
|
+
"update:tint2BottomLeft": (args_0?: number | undefined) => any;
|
|
158
|
+
"update:tint2BottomRight": (args_0?: number | undefined) => any;
|
|
155
159
|
"update:tintMode": (args_0?: Phaser.TintModes | undefined) => any;
|
|
156
160
|
"update:tint": (args_0?: number | undefined) => any;
|
|
157
161
|
"update:isTinted": (args_0?: boolean | undefined) => any;
|
|
@@ -303,6 +307,10 @@ declare const __VLS_export: import('vue').DefineComponent<SpriteProps, {}, {}, {
|
|
|
303
307
|
"onUpdate:tintTopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
304
308
|
"onUpdate:tintBottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
305
309
|
"onUpdate:tintBottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
310
|
+
"onUpdate:tint2TopLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
311
|
+
"onUpdate:tint2TopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
312
|
+
"onUpdate:tint2BottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
313
|
+
"onUpdate:tint2BottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
306
314
|
"onUpdate:tintMode"?: ((args_0?: Phaser.TintModes | undefined) => any) | undefined;
|
|
307
315
|
"onUpdate:tint"?: ((args_0?: number | undefined) => any) | undefined;
|
|
308
316
|
"onUpdate:isTinted"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -141,6 +141,10 @@ declare const __VLS_export: import('vue').DefineComponent<TextProps, {}, {}, {},
|
|
|
141
141
|
"update:tintTopRight": (args_0?: number | undefined) => any;
|
|
142
142
|
"update:tintBottomLeft": (args_0?: number | undefined) => any;
|
|
143
143
|
"update:tintBottomRight": (args_0?: number | undefined) => any;
|
|
144
|
+
"update:tint2TopLeft": (args_0?: number | undefined) => any;
|
|
145
|
+
"update:tint2TopRight": (args_0?: number | undefined) => any;
|
|
146
|
+
"update:tint2BottomLeft": (args_0?: number | undefined) => any;
|
|
147
|
+
"update:tint2BottomRight": (args_0?: number | undefined) => any;
|
|
144
148
|
"update:tintMode": (args_0?: Phaser.TintModes | undefined) => any;
|
|
145
149
|
"update:tint": (args_0?: number | undefined) => any;
|
|
146
150
|
"update:isTinted": (args_0?: boolean | undefined) => any;
|
|
@@ -289,6 +293,10 @@ declare const __VLS_export: import('vue').DefineComponent<TextProps, {}, {}, {},
|
|
|
289
293
|
"onUpdate:tintTopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
290
294
|
"onUpdate:tintBottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
291
295
|
"onUpdate:tintBottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
296
|
+
"onUpdate:tint2TopLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
297
|
+
"onUpdate:tint2TopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
298
|
+
"onUpdate:tint2BottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
299
|
+
"onUpdate:tint2BottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
292
300
|
"onUpdate:tintMode"?: ((args_0?: Phaser.TintModes | undefined) => any) | undefined;
|
|
293
301
|
"onUpdate:tint"?: ((args_0?: number | undefined) => any) | undefined;
|
|
294
302
|
"onUpdate:isTinted"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -148,6 +148,10 @@ declare const __VLS_export: import('vue').DefineComponent<VideoProps, {}, {}, {}
|
|
|
148
148
|
"update:tintTopRight": (args_0?: number | undefined) => any;
|
|
149
149
|
"update:tintBottomLeft": (args_0?: number | undefined) => any;
|
|
150
150
|
"update:tintBottomRight": (args_0?: number | undefined) => any;
|
|
151
|
+
"update:tint2TopLeft": (args_0?: number | undefined) => any;
|
|
152
|
+
"update:tint2TopRight": (args_0?: number | undefined) => any;
|
|
153
|
+
"update:tint2BottomLeft": (args_0?: number | undefined) => any;
|
|
154
|
+
"update:tint2BottomRight": (args_0?: number | undefined) => any;
|
|
151
155
|
"update:tintMode": (args_0?: Phaser.TintModes | undefined) => any;
|
|
152
156
|
"update:tint": (args_0?: number | undefined) => any;
|
|
153
157
|
"update:isTinted": (args_0?: boolean | undefined) => any;
|
|
@@ -295,6 +299,10 @@ declare const __VLS_export: import('vue').DefineComponent<VideoProps, {}, {}, {}
|
|
|
295
299
|
"onUpdate:tintTopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
296
300
|
"onUpdate:tintBottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
297
301
|
"onUpdate:tintBottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
302
|
+
"onUpdate:tint2TopLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
303
|
+
"onUpdate:tint2TopRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
304
|
+
"onUpdate:tint2BottomLeft"?: ((args_0?: number | undefined) => any) | undefined;
|
|
305
|
+
"onUpdate:tint2BottomRight"?: ((args_0?: number | undefined) => any) | undefined;
|
|
298
306
|
"onUpdate:tintMode"?: ((args_0?: Phaser.TintModes | undefined) => any) | undefined;
|
|
299
307
|
"onUpdate:tint"?: ((args_0?: number | undefined) => any) | undefined;
|
|
300
308
|
"onUpdate:isTinted"?: ((args_0?: boolean | undefined) => any) | undefined;
|
|
@@ -84,6 +84,6 @@ export declare const AnimationSetterMap: {
|
|
|
84
84
|
onResumeParams?: any[] | undefined;
|
|
85
85
|
persist?: boolean | undefined;
|
|
86
86
|
interpolation?: (string | Function) | undefined;
|
|
87
|
-
}[] | undefined) => void) & ((event: "update:flipX", args_0?: boolean | undefined) => void) & ((event: "update:flipY", args_0?: boolean | undefined) => void) & ((event: "update:alpha", args_0?: number | undefined) => void) & ((event: "update:blendMode", args_0?: string | number | Phaser.BlendModes | undefined) => void) & ((event: "update:key", args_0?: string | Phaser.Textures.Texture | undefined) => void) & ((event: "update:alphaTopLeft", args_0?: number | undefined) => void) & ((event: "update:alphaTopRight", args_0?: number | undefined) => void) & ((event: "update:alphaBottomLeft", args_0?: number | undefined) => void) & ((event: "update:alphaBottomRight", args_0?: number | undefined) => void) & ((event: "update:mask", args_0?: Phaser.Display.Masks.GeometryMask | undefined) => void) & ((event: "update:customRenderNodes", args_0?: object | undefined) => void) & ((event: "update:defaultRenderNodes", args_0?: object | undefined) => void) & ((event: "update:renderNodeData", args_0?: object | undefined) => void) & ((event: "update:frame", args_0?: string | number | undefined) => void) & ((event: "update:texture", args_0?: string | undefined) => void) & ((event: "update:tintTopLeft", args_0?: number | undefined) => void) & ((event: "update:tintTopRight", args_0?: number | undefined) => void) & ((event: "update:tintBottomLeft", args_0?: number | undefined) => void) & ((event: "update:tintBottomRight", args_0?: number | undefined) => void) & ((event: "update:tintMode", args_0?: Phaser.TintModes | undefined) => void) & ((event: "update:tint", args_0?: number | undefined) => void) & ((event: "update:isTinted", args_0?: boolean | undefined) => void) & ((event: "update:useSpriteSheet", args_0?: boolean | undefined) => void) & ((event: "update:animations", args_0?: Phaser.Types.Animations.Animation[] | undefined) => void) & ((event: "update:playAnimationKey", args_0?: string | undefined) => void)) => (configurations: Phaser.Types.Animations.Animation[] | undefined) => void;
|
|
87
|
+
}[] | undefined) => void) & ((event: "update:flipX", args_0?: boolean | undefined) => void) & ((event: "update:flipY", args_0?: boolean | undefined) => void) & ((event: "update:alpha", args_0?: number | undefined) => void) & ((event: "update:blendMode", args_0?: string | number | Phaser.BlendModes | undefined) => void) & ((event: "update:key", args_0?: string | Phaser.Textures.Texture | undefined) => void) & ((event: "update:alphaTopLeft", args_0?: number | undefined) => void) & ((event: "update:alphaTopRight", args_0?: number | undefined) => void) & ((event: "update:alphaBottomLeft", args_0?: number | undefined) => void) & ((event: "update:alphaBottomRight", args_0?: number | undefined) => void) & ((event: "update:mask", args_0?: Phaser.Display.Masks.GeometryMask | undefined) => void) & ((event: "update:customRenderNodes", args_0?: object | undefined) => void) & ((event: "update:defaultRenderNodes", args_0?: object | undefined) => void) & ((event: "update:renderNodeData", args_0?: object | undefined) => void) & ((event: "update:frame", args_0?: string | number | undefined) => void) & ((event: "update:texture", args_0?: string | undefined) => void) & ((event: "update:tintTopLeft", args_0?: number | undefined) => void) & ((event: "update:tintTopRight", args_0?: number | undefined) => void) & ((event: "update:tintBottomLeft", args_0?: number | undefined) => void) & ((event: "update:tintBottomRight", args_0?: number | undefined) => void) & ((event: "update:tint2TopLeft", args_0?: number | undefined) => void) & ((event: "update:tint2TopRight", args_0?: number | undefined) => void) & ((event: "update:tint2BottomLeft", args_0?: number | undefined) => void) & ((event: "update:tint2BottomRight", args_0?: number | undefined) => void) & ((event: "update:tintMode", args_0?: Phaser.TintModes | undefined) => void) & ((event: "update:tint", args_0?: number | undefined) => void) & ((event: "update:isTinted", args_0?: boolean | undefined) => void) & ((event: "update:useSpriteSheet", args_0?: boolean | undefined) => void) & ((event: "update:animations", args_0?: Phaser.Types.Animations.Animation[] | undefined) => void) & ((event: "update:playAnimationKey", args_0?: string | undefined) => void)) => (configurations: Phaser.Types.Animations.Animation[] | undefined) => void;
|
|
88
88
|
readonly playAnimationKey: (gameObject: GameObjects.Sprite) => (value: string | undefined) => void;
|
|
89
89
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-phaserjs",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.29.0",
|
|
4
4
|
"description": "A component library to integrate Phaser Framework with Vue.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"phaser",
|
|
@@ -36,23 +36,23 @@
|
|
|
36
36
|
"typecheck": "vue-tsc"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@esposter/configuration": "2.
|
|
39
|
+
"@esposter/configuration": "2.29.0",
|
|
40
40
|
"@vitejs/plugin-vue": "^6.0.7",
|
|
41
41
|
"@vue/test-utils": "^2.4.11",
|
|
42
42
|
"ctix": "^2.8.1",
|
|
43
43
|
"type-fest": "^5.7.0",
|
|
44
44
|
"unplugin-auto-import": "^21.0.0",
|
|
45
45
|
"vite": "^8.0.16",
|
|
46
|
-
"vitest": "^4.1.
|
|
46
|
+
"vitest": "^4.1.9",
|
|
47
47
|
"vue-tsc": "^3.3.5"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@esposter/shared": "2.
|
|
51
|
-
"parse-tmx": "2.
|
|
52
|
-
"phaser": "^4.
|
|
50
|
+
"@esposter/shared": "2.28.0",
|
|
51
|
+
"parse-tmx": "2.28.0",
|
|
52
|
+
"phaser": "^4.2.0",
|
|
53
53
|
"phaser4-rex-plugins": "^4.0.7",
|
|
54
54
|
"pinia": "^3.0.4",
|
|
55
55
|
"vue": "^3.5.38"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "0166c5a9bea8b089ce37499f66b8d8095f4b4b23"
|
|
58
58
|
}
|