vue-phaserjs 2.4.0 → 2.5.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.
@@ -1,4 +1,6 @@
1
+ import { SceneWithPlugins } from '../models/scene/SceneWithPlugins';
2
+ import { GameObjects } from 'phaser';
1
3
  export declare const InjectionKeyMap: {
2
- readonly ParentContainer: symbol;
3
- readonly SceneKey: symbol;
4
+ readonly ParentContainer: InjectionKey<Ref<GameObjects.Container | undefined>>;
5
+ readonly SceneKey: InjectionKey<SceneWithPlugins["scene"]["key"]>;
4
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-phaserjs",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "description": "A component library to integrate Phaser Framework with Vue.",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/Esposter/Esposter#readme",
@@ -27,22 +27,19 @@
27
27
  },
28
28
  "scripts": {
29
29
  "build": "pnpm export:gen && vite build",
30
- "lint": "eslint .",
31
- "lint:fix": "eslint --fix .",
30
+ "lint": "oxlint && eslint .",
31
+ "lint:fix": "oxlint --fix && eslint --fix .",
32
32
  "typecheck": "vue-tsc",
33
33
  "export:gen": "ctix build --config ../configuration/.ctirc-vue && ctix build --config ../configuration/.ctirc-ts"
34
34
  },
35
35
  "dependencies": {
36
- "parse-tmx": "2.4.0"
37
- },
38
- "devDependencies": {
39
- "rolldown-vite": "^6.3.12"
36
+ "parse-tmx": "2.5.0"
40
37
  },
41
38
  "peerDependencies": {
42
- "phaser": "^3.88.2",
43
- "phaser3-rex-plugins": "^1.80.15",
44
- "pinia": "^3.0.2",
45
- "vue": "^3.5.14"
39
+ "phaser": "^3.90.0",
40
+ "phaser3-rex-plugins": "^1.80.16",
41
+ "pinia": "^3.0.3",
42
+ "vue": "^3.5.17"
46
43
  },
47
- "gitHead": "b17224ff11ad2688c5406413ca6e066f3e565abf"
44
+ "gitHead": "8faf7789eed01e2fcff4d2206137058e3c3ee681"
48
45
  }