nitro-renderer/package.json

40 lines
1.0 KiB
JSON
Raw Normal View History

2021-03-17 03:02:09 +01: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-03-21 06:55:16 +01:00
"version": "1.1.15",
2021-12-26 04:07:57 +01:00
"publishConfig": {
"access": "public"
},
"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-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": {
"compile": "tsc --project ./tsconfig.json",
2021-12-08 12:48:46 +01:00
"eslint": "eslint ./src --fix",
"postinstall": "node ./post-install.js"
2021-07-27 23:08:18 +02:00
},
2021-03-17 03:02:09 +01:00
"dependencies": {
2022-03-03 01:12:39 +01:00
"@pixi/canvas-renderer": "^6.2.2",
"@pixi/extract": "^6.2.2",
2021-07-13 22:34:41 +02:00
"@pixi/filter-adjustment": "^4.1.3",
"@pixi/tilemap": "^3.2.2",
2021-08-03 02:08:22 +02:00
"pako": "^2.0.4",
2022-03-03 01:12:39 +01:00
"pixi.js": "^6.2.2"
2021-03-17 03:02:09 +01:00
},
"devDependencies": {
2022-03-03 01:12:39 +01:00
"@types/pako": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
2021-12-26 04:25:24 +01:00
"tslib": "^2.3.1",
2021-12-08 12:48:46 +01:00
"typescript": "~4.4.4"
2021-03-17 03:02:09 +01:00
}
}