UNPKG

arx-level-generator

Version:
126 lines (125 loc) 3.73 kB
{ "name": "arx-level-generator", "version": "20.1.0", "description": "A tool for creating Arx Fatalis maps", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "type": "module", "engines": { "npm": ">=8.0.0", "node": ">=20.0.0" }, "bin": { "arx-level-generator": "dist/src/bin/cli.js" }, "exports": { ".": { "default": "./dist/src/index.js", "types": "./dist/src/index.d.ts" }, "./prefabs/entity": { "default": "./dist/src/prefabs/entity/index.js", "types": "./dist/src/prefabs/entity/index.d.ts" }, "./prefabs/mesh": { "default": "./dist/src/prefabs/mesh/index.js", "types": "./dist/src/prefabs/mesh/index.d.ts" }, "./prefabs/rooms": { "default": "./dist/src/prefabs/rooms/index.js", "types": "./dist/src/prefabs/rooms/index.d.ts" }, "./scripting": { "default": "./dist/src/scripting/index.js", "types": "./dist/src/scripting/index.d.ts" }, "./scripting/classes": { "default": "./dist/src/scripting/classes/index.js", "types": "./dist/src/scripting/classes/index.d.ts" }, "./scripting/commands": { "default": "./dist/src/scripting/commands/index.js", "types": "./dist/src/scripting/commands/index.d.ts" }, "./scripting/hooks": { "default": "./dist/src/scripting/hooks/index.js", "types": "./dist/src/scripting/hooks/index.d.ts" }, "./scripting/interfaces": { "default": "./dist/src/scripting/interfaces/index.js", "types": "./dist/src/scripting/interfaces/index.d.ts" }, "./scripting/properties": { "default": "./dist/src/scripting/properties/index.js", "types": "./dist/src/scripting/properties/index.d.ts" }, "./tools": { "default": "./dist/src/tools/index.js", "types": "./dist/src/tools/index.d.ts" }, "./tools/mesh": { "default": "./dist/src/tools/mesh/index.js", "types": "./dist/src/tools/mesh/index.d.ts" }, "./utils": { "default": "./dist/src/utils.js", "types": "./dist/src/utils.d.ts" }, "./utils/random": { "default": "./dist/src/random.js", "types": "./dist/src/random.d.ts" }, "./utils/faux-ramda": { "default": "./dist/src/faux-ramda.js", "types": "./dist/src/faux-ramda.d.ts" } }, "scripts": { "build": "tsc && tsc-alias", "prepublishOnly": "npm run lint:fix && rm -rf dist && npm run build", "lint": "eslint src", "lint:fix": "eslint src --fix" }, "repository": { "type": "git", "url": "git+https://github.com/arx-tools/arx-level-generator.git" }, "author": "Lajos Meszaros <m_lajos@hotmail.com>", "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": "^2.3.1", "color-rgba": "^3.0.0", "dotenv": "^16.4.5", "minimist-lite": "^2.2.1", "node-pkware": "^3.0.5", "object-hash": "^3.0.0", "seedrandom": "^3.0.5", "sharp": "^0.33.4", "sharp-bmp": "^0.1.5" }, "peerDependencies": { "arx-convert": "^9.0.1", "three": "0.165.0" }, "devDependencies": { "@trivago/prettier-plugin-sort-imports": "^4.3.0", "@types/color-rgba": "^2.1.2", "@types/node": "^20.14.2", "@types/object-hash": "^3.0.6", "@types/seedrandom": "^3.0.8", "@types/sharp": "^0.31.1", "@types/three": "^0.165.0", "@typescript-eslint/eslint-plugin": "^7.13.0", "@typescript-eslint/parser": "^7.13.0", "eslint": "^8.56.0", "tsc-alias": "^1.8.10", "typescript": "^5.4.5" }, "keywords": [ "arx-fatalis" ] }