|
1 | 1 | /*!
|
2 |
| - * melonJS debug plugin - v14.8.1 |
| 2 | + * melonJS debug plugin - v14.8.2 |
3 | 3 | * http://www.melonjs.org
|
4 | 4 | * @melonjs/debug-plugin is licensed under the MIT License.
|
5 | 5 | * http://www.opensource.org/licenses/mit-license
|
6 |
| - * @copyright (C) 2011 - 2023 Olivier Biot (AltByte Pte Ltd) |
| 6 | + * @copyright (C) 2011 - 2024 Olivier Biot (AltByte Pte Ltd) |
7 | 7 | */
|
8 |
| -import { Renderable, video, utils, BitmapText, Rect, event, Container, Entity, Text, Camera2d, ImageLayer, plugin, game, input, timer, collision, Math, pool } from 'melonjs'; |
| 8 | +import { Renderable, video, utils, BitmapText, Rect, event, plugin, Container, Entity, Text, Camera2d, ImageLayer, game, input, timer, collision, Math, pool } from 'melonjs'; |
9 | 9 |
|
10 | 10 | var name = "@melonjs/debug-plugin";
|
11 |
| -var version = "14.8.1"; |
| 11 | +var version = "14.8.2"; |
12 | 12 | var description = "melonJS debug plugin";
|
13 | 13 | var homepage = "https://github.com/melonjs/debug-plugin#readme";
|
14 | 14 | var type = "module";
|
@@ -57,23 +57,23 @@ var files = [
|
57 | 57 | "LICENSE"
|
58 | 58 | ];
|
59 | 59 | var peerDependencies = {
|
60 |
| - melonjs: "^15.12.0" |
| 60 | + melonjs: ">=15.12" |
61 | 61 | };
|
62 | 62 | var devDependencies = {
|
63 |
| - "@babel/eslint-parser": "^7.22.15", |
64 |
| - "@babel/plugin-syntax-import-assertions": "^7.22.5", |
65 |
| - "@rollup/plugin-commonjs": "^25.0.5", |
| 63 | + "@babel/eslint-parser": "^7.23.10", |
| 64 | + "@babel/plugin-syntax-import-assertions": "^7.23.3", |
| 65 | + "@rollup/plugin-commonjs": "^25.0.7", |
66 | 66 | "@rollup/plugin-image": "^3.0.3",
|
67 |
| - "@rollup/plugin-json": "^6.0.1", |
| 67 | + "@rollup/plugin-json": "^6.0.7", |
68 | 68 | "@rollup/plugin-node-resolve": "^15.2.3",
|
69 |
| - "@rollup/plugin-replace": "^5.0.3", |
| 69 | + "@rollup/plugin-replace": "^5.0.5", |
70 | 70 | "del-cli": "^5.1.0",
|
71 |
| - eslint: "^8.51.0", |
72 |
| - "eslint-plugin-jsdoc": "^46.8.2", |
73 |
| - rollup: "^4.0.2", |
| 71 | + eslint: "^8.56.0", |
| 72 | + "eslint-plugin-jsdoc": "^48.0.4", |
| 73 | + rollup: "^4.9.6", |
74 | 74 | "rollup-plugin-bundle-size": "^1.0.3",
|
75 | 75 | "rollup-plugin-string": "^3.0.0",
|
76 |
| - typescript: "^5.2.2" |
| 76 | + typescript: "^5.3.3" |
77 | 77 | };
|
78 | 78 | var scripts = {
|
79 | 79 | build: "npm run lint && rollup -c --silent && npm run types",
|
@@ -169,7 +169,7 @@ class DebugPanel extends Renderable {
|
169 | 169 | this.name = "debugPanel";
|
170 | 170 |
|
171 | 171 | // the debug panel version
|
172 |
| - this.version = "14.8.1"; |
| 172 | + this.version = "14.8.2"; |
173 | 173 |
|
174 | 174 | // persistent
|
175 | 175 | this.isPersistent = true;
|
|
0 commit comments