nitro-renderer/package.json

46 lines
1.1 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",
2024-03-20 02:53:17 +01:00
"version": "2.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
2021-12-26 04:07:57 +01:00
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
2024-03-20 02:53:17 +01:00
"url": "https://github.com/billsonnn/nitro-renderer.git"
2021-12-26 04:07:57 +01:00
},
"license": "GPL-3.0",
"bugs": {
2024-03-20 02:53:17 +01:00
"url": "https://github.com/billsonnn/nitro-renderer/issues"
},
2024-03-20 02:53:17 +01:00
"homepage": "https://github.com/billsonnn/nitro-renderer",
2021-07-27 23:08:18 +02:00
"scripts": {
"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
},
"main": "./index",
2021-03-17 03:02:09 +01:00
"dependencies": {
2024-03-20 02:53:17 +01:00
"howler": "^2.2.4",
"pako": "^2.1.0",
"pixi-filters": "^6.0.0",
2024-03-23 15:36:24 +01:00
"pixi.js": "~8.0.4"
2021-03-17 03:02:09 +01:00
},
"devDependencies": {
2024-03-20 02:53:17 +01:00
"@rollup/plugin-typescript": "^11.1.6",
"@types/howler": "^2.2.11",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
2021-12-26 04:25:24 +01:00
"tslib": "^2.3.1",
2024-03-20 02:53:17 +01:00
"typescript": "~5.4.2",
"vite": "^5.1.3"
2021-03-17 03:02:09 +01:00
}
}