-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.53 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
{
"name": "arx-map-ambience-gallery",
"version": "1.0.1",
"description": "A simple Arx Fatalis map for exploring the game's ambiences",
"main": "src/index.ts",
"type": "module",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"scripts": {
"generate": "tsc && tsc-alias && node ./dist/src/index.js",
"rungame": "arx-level-generator --rungame",
"rungame:noclip": "arx-level-generator --rungame --noclip",
"dev": "npm run generate && npm run rungame",
"dev:noclip": "npm run generate && npm run rungame:noclip",
"prod": "export mode=\"production\" && npm run generate && npm run rungame",
"release": "export uncompressedFTS=\"false\" && export outputDir=\"./output\" && export mode=\"production\" && rm -rf cache && rm -rf output && npm run generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meszaros-lajos-gyorgy/arx-map-ambience-gallery.git"
},
"keywords": [
"arx-fatalis"
],
"author": "Lajos Meszaros <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meszaros-lajos-gyorgy/arx-map-ambience-gallery/issues"
},
"homepage": "https://github.com/meszaros-lajos-gyorgy/arx-map-ambience-gallery#readme",
"dependencies": {
"arx-convert": "^10.1.1",
"arx-level-generator": "21.0.0-alpha.24",
"three": "^0.167.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.1.0",
"@types/three": "^0.167.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4"
}
}