-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 KB
/
package.json
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
49
{
"name": "arx-fatalis-browser-editor",
"version": "1.0.0",
"description": "A gui tool for creating and editing Arx Fatalis maps here in your browser",
"main": "index.js",
"type": "module",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"scripts": {
"bundle": "esbuild src/index.ts --bundle --minify --sourcemap --outfile=public/bundle.js",
"bundle:watch": "nodemon --watch src --exec \"npm run bundle\" --ext ts",
"serve": "http-server public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arx-tools/editor.git"
},
"author": "Lajos Meszaros <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arx-tools/editor/issues"
},
"homepage": "https://github.com/arx-tools/editor#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^22.10.2",
"@types/three": "^0.171.0",
"arx-convert": "^10.3.2",
"arx-header-size": "^3.2.0",
"arx-level-generator": "^21.0.0-alpha.34",
"esbuild": "^0.24.2",
"eslint-plugin-unused-imports": "^4.1.4",
"jszip": "^3.10.1",
"node-pkware": "^5.1.0",
"nodemon": "^3.1.9",
"three": "^0.171.0",
"three-viewport-gizmo": "^2.0.2",
"typescript": "^5.7.2",
"xo": "^0.60.0"
},
"dependencies": {
"http-server": "^14.1.1"
},
"keywords": [
"arx-fatalis"
]
}