@joydle/tilemap 0.1.0 → 0.1.19

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.
Files changed (1) hide show
  1. package/package.json +17 -15
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@joydle/tilemap",
3
- "version": "0.1.0",
4
- "description": "Grid tiles, auto-tile, Tiled import, and AABB collision for PixiJS, Three.js, Phaser, and Babylon.js",
3
+ "version": "0.1.19",
4
+ "description": "Grid tiles, auto-tile, Tiled import, and AABB collision for PixiJS, Three.js, and Babylon.js",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -18,45 +18,47 @@
18
18
  "types": "./dist/three/index.d.ts",
19
19
  "import": "./dist/three/index.js"
20
20
  },
21
- "./phaser": {
22
- "types": "./dist/phaser/index.d.ts",
23
- "import": "./dist/phaser/index.js"
24
- },
25
21
  "./babylon": {
26
22
  "types": "./dist/babylon/index.d.ts",
27
23
  "import": "./dist/babylon/index.js"
28
24
  }
29
25
  },
30
- "files": ["dist"],
26
+ "files": [
27
+ "dist"
28
+ ],
31
29
  "scripts": {
32
30
  "build": "tsc",
33
31
  "demo:pixi": "vite serve examples/pixi --config examples/pixi/vite.config.ts",
34
32
  "demo:three": "vite serve examples/three --config examples/three/vite.config.ts",
35
- "demo:phaser": "vite serve examples/phaser --config examples/phaser/vite.config.ts",
36
33
  "demo:babylon": "vite serve examples/babylon --config examples/babylon/vite.config.ts",
37
34
  "test": "vitest run",
38
35
  "test:watch": "vitest"
39
36
  },
40
- "publishConfig": { "access": "public" },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
41
40
  "license": "MIT",
42
41
  "author": "Joydle <contact@joydle.dev>",
43
42
  "homepage": "https://joydle.dev",
44
43
  "peerDependencies": {
45
44
  "@babylonjs/core": ">=6.0.0",
46
- "phaser": ">=3.60.0",
47
45
  "pixi.js": ">=7.0.0",
48
46
  "three": ">=0.150.0"
49
47
  },
50
48
  "peerDependenciesMeta": {
51
- "pixi.js": { "optional": true },
52
- "three": { "optional": true },
53
- "phaser": { "optional": true },
54
- "@babylonjs/core": { "optional": true }
49
+ "pixi.js": {
50
+ "optional": true
51
+ },
52
+ "three": {
53
+ "optional": true
54
+ },
55
+ "@babylonjs/core": {
56
+ "optional": true
57
+ }
55
58
  },
56
59
  "devDependencies": {
57
60
  "@babylonjs/core": "^8.51.2",
58
61
  "@types/three": "^0.170.0",
59
- "phaser": "^3.90.0",
60
62
  "pixi.js": "^8.0.0",
61
63
  "three": "^0.170.0",
62
64
  "typescript": "^5.7.0",