vue-phaserjs 2.17.0 → 2.19.2
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/LICENSE +201 -201
- package/README.md +43 -43
- package/dist/components/Circle.vue.d.ts +2 -1
- package/dist/components/Container.vue.d.ts +7 -13
- package/dist/components/Game.vue.d.ts +7 -17
- package/dist/components/Image.vue.d.ts +2 -1
- package/dist/components/Nineslice.vue.d.ts +2 -1
- package/dist/components/PathFollower.vue.d.ts +2 -1
- package/dist/components/Rectangle.vue.d.ts +2 -1
- package/dist/components/Scene.vue.d.ts +7 -13
- package/dist/components/Sprite.vue.d.ts +2 -1
- package/dist/components/Text.vue.d.ts +2 -1
- package/dist/components/TileSprite.vue.d.ts +2 -1
- package/dist/components/Tilemap.vue.d.ts +7 -13
- package/dist/components/Zone.vue.d.ts +2 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/index.js +5720 -3654
- package/dist/index2.js +0 -0
- package/package.json +22 -22
package/dist/index2.js
ADDED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-phaserjs",
|
|
3
|
+
"version": "2.19.2",
|
|
3
4
|
"description": "A component library to integrate Phaser Framework with Vue.",
|
|
4
|
-
"
|
|
5
|
-
|
|
5
|
+
"keywords": [
|
|
6
|
+
"phaser",
|
|
7
|
+
"vue"
|
|
8
|
+
],
|
|
6
9
|
"homepage": "https://github.com/Esposter/Esposter/blob/main/packages/vue-phaserjs#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/Esposter/Esposter/issues"
|
|
12
|
+
},
|
|
7
13
|
"license": "Apache-2.0",
|
|
8
14
|
"author": "Jimmy Chen",
|
|
9
|
-
"
|
|
10
|
-
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/Esposter/Esposter.git"
|
|
18
|
+
},
|
|
11
19
|
"files": [
|
|
12
20
|
"dist"
|
|
13
21
|
],
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
],
|
|
22
|
+
"type": "module",
|
|
23
|
+
"main": "dist/index.js",
|
|
24
|
+
"types": "dist/index.d.ts",
|
|
18
25
|
"publishConfig": {
|
|
19
26
|
"access": "public"
|
|
20
27
|
},
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "git+https://github.com/Esposter/Esposter.git"
|
|
24
|
-
},
|
|
25
|
-
"bugs": {
|
|
26
|
-
"url": "https://github.com/Esposter/Esposter/issues"
|
|
27
|
-
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "pnpm export:gen && vite build",
|
|
30
30
|
"export:gen": "ctix build --config ../configuration/.ctirc-vue && ctix build --config ../configuration/.ctirc-ts",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"typecheck": "vue-tsc"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@esposter/shared": "2.
|
|
37
|
-
"parse-tmx": "2.
|
|
36
|
+
"@esposter/shared": "2.19.2",
|
|
37
|
+
"parse-tmx": "2.19.2"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"phaser": "^4.0.0-rc.
|
|
41
|
-
"phaser3-rex-plugins": "^1.80.
|
|
42
|
-
"pinia": "^3.0.
|
|
43
|
-
"vue": "^3.5.
|
|
40
|
+
"phaser": "^4.0.0-rc.6",
|
|
41
|
+
"phaser3-rex-plugins": "^1.80.18",
|
|
42
|
+
"pinia": "^3.0.4",
|
|
43
|
+
"vue": "^3.5.27"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "2d39052b4767fba8fd2e1798202645161f45cb2c"
|
|
46
46
|
}
|