Files
Nitro_Render_V3/package.json
T
duckietm e263ce59bf 🆙 Added animated gif to badge_display
Display Container
├── Furniture Container (renders 1st - back)
│   └── All furniture sprites sorted by z-depth
├── Avatar Container (renders 2nd - middle)
│   └── All avatar sprites sorted by z-depth
└── Badge Container (renders 3rd - front)
    └── All badge sprites sorted by z-depth

 Badges render on top of their furniture
 Avatars respect proper 3D depth (in front when in front, behind when behind)
 Animated GIFs work beautifully
 Clean, maintainable code with just a tiny z-offset
2026-01-30 09:59:04 +01:00

50 lines
1.2 KiB
JSON

{
"name": "@nitrots/nitro-renderer",
"description": "Javascript library for rendering Nitro in the browser using PixiJS",
"version": "2.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/billsonnn/nitro-renderer.git"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/billsonnn/nitro-renderer/issues"
},
"homepage": "https://github.com/billsonnn/nitro-renderer",
"scripts": {
"build": "vite build",
"compile": "tsc --project ./tsconfig.json --noEmit false",
"eslint": "eslint ./src ./packages/*/src",
"eslint-fix": "eslint ./src --fix"
},
"main": "./index",
"dependencies": {
"clientjs": "^0.2.1",
"gifuct-js": "^2.1.2",
"howler": "^2.2.4",
"pako": "^2.1.0",
"pixi-filters": "^6.1.5",
"pixi.js": "^8.15.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/howler": "^2.2.11",
"@types/node": "^20.14.12",
"@types/pako": "^2.0.3",
"eslint": "^9.8.0",
"tslib": "^2.6.3",
"typescript": "~5.8.2",
"typescript-eslint": "^8.26.1",
"vite": "^5.4.9"
}
}