-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "arx-level-generator",
"version": "21.0.0-alpha.34",
"description": "A node.js library for creating maps for the video game Arx Fatalis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"npm": ">=8.0.0",
"node": ">=20.0.0"
},
"bin": {
"arx-level-generator": "dist/bin/cli.js"
},
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./prefabs/entity": {
"default": "./dist/prefabs/entity/index.js",
"types": "./dist/prefabs/entity/index.d.ts"
},
"./prefabs/mesh": {
"default": "./dist/prefabs/mesh/index.js",
"types": "./dist/prefabs/mesh/index.d.ts"
},
"./prefabs/rooms": {
"default": "./dist/prefabs/rooms/index.js",
"types": "./dist/prefabs/rooms/index.d.ts"
},
"./scripting": {
"default": "./dist/scripting/index.js",
"types": "./dist/scripting/index.d.ts"
},
"./scripting/classes": {
"default": "./dist/scripting/classes/index.js",
"types": "./dist/scripting/classes/index.d.ts"
},
"./scripting/commands": {
"default": "./dist/scripting/commands/index.js",
"types": "./dist/scripting/commands/index.d.ts"
},
"./scripting/hooks": {
"default": "./dist/scripting/hooks/index.js",
"types": "./dist/scripting/hooks/index.d.ts"
},
"./scripting/interfaces": {
"default": "./dist/scripting/interfaces/index.js",
"types": "./dist/scripting/interfaces/index.d.ts"
},
"./scripting/properties": {
"default": "./dist/scripting/properties/index.js",
"types": "./dist/scripting/properties/index.d.ts"
},
"./tools": {
"default": "./dist/tools/index.js",
"types": "./dist/tools/index.d.ts"
},
"./tools/mesh": {
"default": "./dist/tools/mesh/index.js",
"types": "./dist/tools/mesh/index.d.ts"
},
"./utils": {
"default": "./dist/utils.js",
"types": "./dist/utils.d.ts"
},
"./utils/random": {
"default": "./dist/random.js",
"types": "./dist/random.d.ts"
},
"./utils/faux-ramda": {
"default": "./dist/faux-ramda.js",
"types": "./dist/faux-ramda.d.ts"
}
},
"scripts": {
"build": "tsc && tsc-alias",
"build:watch": "nodemon --watch src --exec \"npm run build\" --ext ts",
"lint": "xo",
"lint:watch": "nodemon --watch src --exec \"npm run lint\" --ext ts",
"prepublishOnly": "npm run lint && rm -rf dist && rm -f tsconfig.tsbuildinfo && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arx-tools/arx-level-generator.git"
},
"author": "Lajos Meszaros <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arx-tools/arx-level-generator/issues"
},
"homepage": "https://github.com/arx-tools/arx-level-generator#readme",
"dependencies": {
"arx-header-size": "^3.2.0",
"color-rgba": "^3.0.0",
"dotenv": "^16.4.7",
"minimist-lite": "^2.2.1",
"node-pkware": "^5.0.1",
"object-hash": "^3.0.0",
"seedrandom": "^3.0.5",
"sharp": "^0.33.5",
"sharp-bmp": "^0.1.5"
},
"peerDependencies": {
"arx-convert": "10.3.2",
"three": "0.171.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/color-rgba": "^2.1.3",
"@types/node": "^22.10.2",
"@types/object-hash": "^3.0.6",
"@types/seedrandom": "^3.0.8",
"@types/sharp": "^0.31.1",
"@types/three": "^0.171.0",
"eslint-plugin-unused-imports": "^4.1.4",
"nodemon": "^3.1.9",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"xo": "^0.60.0"
},
"keywords": [
"arx-fatalis"
]
}