UNPKG

ursamu

Version:

Ursamu - Modular MUD Engine with sandboxed scripting and plugin system

74 lines 1.66 kB
{ "name": "ursamu", "version": "1.1.1", "description": "Ursamu - Modular MUD Engine with sandboxed scripting and plugin system", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "ursamu": "dist/cli/ursamu-cli.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "cli": "node dist/cli/ursamu-cli.js", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src --ext .ts", "clean": "rm -rf dist" }, "keywords": [ "ursamu", "mud", "game", "engine", "scripting", "virtual-machine", "plugin", "modular", "hot-reload" ], "author": "Lemuel Canady", "license": "MIT", "dependencies": { "commander": "^11.0.0", "chalk": "^5.3.0", "ora": "^7.0.1", "ws": "^8.14.0", "chokidar": "^3.5.3", "inquirer": "^9.2.0", "express": "^4.18.2", "cors": "^2.8.5", "helmet": "^7.0.0", "compression": "^1.7.4", "tar": "^6.1.0", "typescript": "^5.1.6" }, "devDependencies": { "@types/node": "^20.5.0", "@types/express": "^4.17.17", "@types/cors": "^2.8.13", "@types/compression": "^1.7.2", "@types/ws": "^8.5.5", "@types/inquirer": "^9.0.3", "@types/tar": "^6.1.0", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.4.0", "eslint": "^8.47.0", "jest": "^29.6.2", "@types/jest": "^29.5.4", "ts-jest": "^29.1.1", "ts-node": "^10.9.1" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/", "README.md", "LICENSE", "templates/", "docs/" ] }