Fix dependencies, bump version

This commit is contained in:
Bill 2022-07-25 00:20:04 -04:00
parent df7e2a114c
commit ad7c7c19cb
2 changed files with 32 additions and 32 deletions

View File

@ -1,7 +1,7 @@
{
"name": "@nitrots/nitro-renderer",
"description": "Javascript library for rendering Nitro in the browser using PixiJS",
"version": "1.3.0",
"version": "1.3.1",
"publishConfig": {
"access": "public"
},
@ -21,38 +21,38 @@
"postinstall": "node ./post-install.js"
},
"dependencies": {
"@pixi/app": "^6.4.2",
"@pixi/basis": "^6.4.2",
"@pixi/canvas-display": "^6.4.2",
"@pixi/canvas-extract": "^6.4.2",
"@pixi/canvas-renderer": "^6.4.2",
"@pixi/constants": "^6.4.2",
"@pixi/core": "^6.4.2",
"@pixi/display": "^6.4.2",
"@pixi/events": "^6.4.2",
"@pixi/extract": "^6.4.2",
"@pixi/app": "~6.4.2",
"@pixi/basis": "~6.4.2",
"@pixi/canvas-display": "~6.4.2",
"@pixi/canvas-extract": "~6.4.2",
"@pixi/canvas-renderer": "~6.4.2",
"@pixi/constants": "~6.4.2",
"@pixi/core": "~6.4.2",
"@pixi/display": "~6.4.2",
"@pixi/events": "~6.4.2",
"@pixi/extract": "~6.4.2",
"@pixi/filter-adjustment": "^4.1.3",
"@pixi/filter-alpha": "^6.4.2",
"@pixi/filter-color-matrix": "^6.4.2",
"@pixi/graphics": "^6.4.2",
"@pixi/graphics-extras": "^6.4.2",
"@pixi/interaction": "^6.4.2",
"@pixi/loaders": "^6.4.2",
"@pixi/math": "^6.4.2",
"@pixi/math-extras": "^6.4.2",
"@pixi/mixin-cache-as-bitmap": "^6.4.2",
"@pixi/mixin-get-child-by-name": "^6.4.2",
"@pixi/mixin-get-global-position": "^6.4.2",
"@pixi/polyfill": "^6.4.2",
"@pixi/runner": "^6.4.2",
"@pixi/settings": "^6.4.2",
"@pixi/sprite": "^6.4.2",
"@pixi/sprite-tiling": "^6.4.2",
"@pixi/spritesheet": "^6.4.2",
"@pixi/text": "^6.4.2",
"@pixi/ticker": "^6.4.2",
"@pixi/filter-alpha": "~6.4.2",
"@pixi/filter-color-matrix": "~6.4.2",
"@pixi/graphics": "~6.4.2",
"@pixi/graphics-extras": "~6.4.2",
"@pixi/interaction": "~6.4.2",
"@pixi/loaders": "~6.4.2",
"@pixi/math": "~6.4.2",
"@pixi/math-extras": "~6.4.2",
"@pixi/mixin-cache-as-bitmap": "~6.4.2",
"@pixi/mixin-get-child-by-name": "~6.4.2",
"@pixi/mixin-get-global-position": "~6.4.2",
"@pixi/polyfill": "~6.4.2",
"@pixi/runner": "~6.4.2",
"@pixi/settings": "~6.4.2",
"@pixi/sprite": "~6.4.2",
"@pixi/sprite-tiling": "~6.4.2",
"@pixi/spritesheet": "~6.4.2",
"@pixi/text": "~6.4.2",
"@pixi/ticker": "~6.4.2",
"@pixi/tilemap": "^3.2.2",
"@pixi/utils": "^6.4.2",
"@pixi/utils": "~6.4.2",
"gifuct-js": "^2.1.2",
"pako": "^2.0.4"
},

View File

@ -1,5 +1,5 @@
export class NitroVersion
{
public static RENDERER_VERSION: string = '1.3.0';
public static RENDERER_VERSION: string = '1.3.1';
public static UI_VERSION: string = '';
}