2021-03-17 03:02:09 +01:00
|
|
|
{
|
2021-08-05 18:21:35 +02:00
|
|
|
"name": "@nitrots/nitro-renderer",
|
2021-12-26 04:07:57 +01:00
|
|
|
"description": "Javascript library for rendering Nitro in the browser using PixiJS",
|
2022-11-19 04:54:34 +01:00
|
|
|
"version": "1.5.0",
|
2021-12-26 04:07:57 +01:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2021-08-05 18:21:35 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-12-26 04:07:57 +01:00
|
|
|
"url": "https://git.krews.org/nitro/nitro-renderer.git"
|
|
|
|
},
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://git.krews.org/nitro/nitro-renderer/issues"
|
2021-08-05 18:21:35 +02:00
|
|
|
},
|
2021-12-26 04:07:57 +01:00
|
|
|
"homepage": "https://git.krews.org/nitro/nitro-renderer",
|
2021-12-08 12:48:46 +01:00
|
|
|
"type": "module",
|
2021-07-27 23:08:18 +02:00
|
|
|
"scripts": {
|
2023-01-03 07:04:48 +01:00
|
|
|
"build": "vite build",
|
|
|
|
"compile": "tsc --project ./tsconfig.json --noEmit false",
|
2022-11-13 02:02:03 +01:00
|
|
|
"eslint": "eslint ./src --fix"
|
2021-07-27 23:08:18 +02:00
|
|
|
},
|
2023-01-03 07:04:48 +01:00
|
|
|
"main": "./index",
|
2021-03-17 03:02:09 +01:00
|
|
|
"dependencies": {
|
2023-01-03 07:04:48 +01:00
|
|
|
"@pixi/app": "~6.5.0",
|
|
|
|
"@pixi/basis": "~6.5.0",
|
|
|
|
"@pixi/canvas-display": "~6.5.0",
|
|
|
|
"@pixi/canvas-extract": "~6.5.0",
|
|
|
|
"@pixi/canvas-renderer": "~6.5.0",
|
|
|
|
"@pixi/constants": "~6.5.0",
|
|
|
|
"@pixi/core": "~6.5.0",
|
|
|
|
"@pixi/display": "~6.5.0",
|
|
|
|
"@pixi/events": "~6.5.0",
|
|
|
|
"@pixi/extensions": "~6.5.0",
|
|
|
|
"@pixi/extract": "~6.5.0",
|
|
|
|
"@pixi/filter-alpha": "~6.5.0",
|
|
|
|
"@pixi/filter-color-matrix": "~6.5.0",
|
|
|
|
"@pixi/graphics": "~6.5.0",
|
|
|
|
"@pixi/graphics-extras": "~6.5.0",
|
|
|
|
"@pixi/interaction": "~6.5.0",
|
|
|
|
"@pixi/loaders": "~6.5.0",
|
|
|
|
"@pixi/math": "~6.5.0",
|
|
|
|
"@pixi/math-extras": "~6.5.0",
|
|
|
|
"@pixi/mixin-cache-as-bitmap": "~6.5.0",
|
|
|
|
"@pixi/mixin-get-child-by-name": "~6.5.0",
|
|
|
|
"@pixi/mixin-get-global-position": "~6.5.0",
|
|
|
|
"@pixi/polyfill": "~6.5.0",
|
|
|
|
"@pixi/runner": "~6.5.0",
|
|
|
|
"@pixi/settings": "~6.5.0",
|
|
|
|
"@pixi/sprite": "~6.5.0",
|
|
|
|
"@pixi/sprite-tiling": "~6.5.0",
|
|
|
|
"@pixi/spritesheet": "~6.5.0",
|
|
|
|
"@pixi/text": "~6.5.0",
|
|
|
|
"@pixi/ticker": "~6.5.0",
|
2021-10-31 21:38:56 +01:00
|
|
|
"@pixi/tilemap": "^3.2.2",
|
2023-01-03 07:04:48 +01:00
|
|
|
"@pixi/utils": "~6.5.0",
|
2022-04-10 08:58:13 +02:00
|
|
|
"gifuct-js": "^2.1.2",
|
2022-11-19 04:44:18 +01:00
|
|
|
"howler": "^2.2.3",
|
2022-04-10 08:58:13 +02:00
|
|
|
"pako": "^2.0.4"
|
2021-03-17 03:02:09 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-03 07:04:48 +01:00
|
|
|
"@rollup/plugin-typescript": "^10.0.1",
|
2022-11-08 23:44:30 +01:00
|
|
|
"@types/howler": "^2.2.7",
|
2022-11-19 04:44:18 +01:00
|
|
|
"@types/pako": "^1.0.3",
|
2022-07-19 03:52:04 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
|
|
|
"@typescript-eslint/parser": "^5.30.7",
|
|
|
|
"eslint": "^8.20.0",
|
2021-12-26 04:25:24 +01:00
|
|
|
"tslib": "^2.3.1",
|
2023-01-03 07:04:48 +01:00
|
|
|
"typescript": "~4.4.4",
|
|
|
|
"vite": "^4.0.2",
|
|
|
|
"vite-plugin-minify": "^1.5.2"
|
2021-03-17 03:02:09 +01:00
|
|
|
}
|
|
|
|
}
|