forked from billsonnn/nitro-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@habforge/nitro-renderer",
"description": "Rendering engine for Nitro using PixiJS",
"version": "2.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/HabForge/NitroRenderer.git"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/HabForge/NitroRenderer/issues"
},
"homepage": "https://github.com/HabForge/NitroRenderer",
"scripts": {
"build": "vite build",
"compile": "tsc --project ./tsconfig.json --noEmit false",
"eslint": "eslint ./src ./packages/*/src",
"eslint-fix": "eslint ./src --fix"
},
"main": "./index",
"dependencies": {
"howler": "^2.2.4",
"pako": "^2.1.0",
"pixi-filters": "^6.0.5",
"pixi.js": "^8.4.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"@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.6.2",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.0"
}
}