package.json 896 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "starmire",
  3. "version": "1.0.0",
  4. "description": "Inspired by LDMUD, this is a telnet, websocket and ssh server that hosts a mud game world. The codebase allows for active load/reload code. Rooms, items, mobiles are all classes, and they have the full capabilties of any javascript code. There are no restrictions on how this can work, so the only thing limiting your world is your own imagination. (And coding skills)",
  5. "main": "index.js",
  6. "dependencies": {
  7. "glob": "7.2.3",
  8. "mime-types": "2.1.35",
  9. "ssh2": "1.11.0",
  10. "websocket": "1.0.34"
  11. },
  12. "scripts": {
  13. "start": "node index.js",
  14. "preinstall": "ssh-keygen -t rsa -b 4096 -C \"nodemud server\" -f ./id_rsa -q -N \"\""
  15. },
  16. "keywords": [
  17. "mud",
  18. "telnet",
  19. "websocket",
  20. "ssh",
  21. "server"
  22. ],
  23. "author": "Justin Gilman <eyeofmidas@gmail.com>",
  24. "license": "All Rights Reserved"
  25. }