@iruka-edu/create-iruka-game 1.0.4 → 1.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iruka-edu/create-iruka-game",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Create Iruka mini game (React + Phaser template)",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "phaser": "^3.60.0",
12
- "@iruka-edu/game-core": "latest"
12
+ "@iruka-edu/mini-game-sdk": "latest"
13
13
  },
14
14
  "devDependencies": {
15
15
  "typescript": "^5.0.0",
@@ -2,7 +2,7 @@ import {
2
2
  connectToHub,
3
3
  type GameBridge,
4
4
  type LaunchContext,
5
- } from "@iruka-edu/game-core";
5
+ } from "@iruka-edu/mini-game-sdk";
6
6
 
7
7
  class GameAdapter {
8
8
  private static instance: GameAdapter;
@@ -1,6 +1,6 @@
1
1
  import { Scene } from "phaser";
2
2
  import { adapter } from "../core/GameAdapter";
3
- import type { LaunchContext } from "@iruka-edu/game-core";
3
+ import type { LaunchContext } from "@iruka-edu/mini-game-sdk";
4
4
  import { SCENES } from "../shared/constants";
5
5
 
6
6
  export class GameScene extends Scene {