@dev-dungeon/mud-engine
Version:
TypeScript game engine library for MUDs that handles core logic, including entity creation, room management, and game interactions in a modular and extensible way.
78 lines (77 loc) • 2.05 kB
JSON
{
"author": "Jonathan Padilla <[email](jonathanpadilla09@outlook.com)> (jonathanpadilla09@outlook.com)",
"description": "TypeScript game engine library for MUDs that handles core logic, including entity creation, room management, and game interactions in a modular and extensible way.",
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"semantic-release": "^24.2.3",
"ts-jest": "^29.3.0",
"tsup": "8.4.0",
"tsx": "^4.19.3",
"typescript": "5.8.2"
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"mud",
"mud-engine",
"game-engine",
"typescript",
"multiplayer",
"text-based-game",
"game-development",
"rpg",
"role-playing-game",
"game-logic"
],
"license": "ISC",
"main": "index.js",
"name": "@dev-dungeon/mud-engine",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/jonathanpadilla/mud-engine.git"
},
"resolutions": {
"tar": "6.1.11"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"example": "tsup && tsx example/src/index.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.5.0",
"dependencies": {
"module-alias": "^2.2.3"
},
"_moduleAliases": {
"@domain": "dist/domain",
"@application": "dist/application",
"@infrastructure": "dist/infrastructure",
"@shared": "dist/shared"
}
}