programming-game
Version: 
The client for programming game, an mmorpg that you interact with entirely through code.
38 lines • 917 B
JSON
{
  "name": "programming-game",
  "version": "0.5.0",
  "description": "The client for programming game, an mmorpg that you interact with entirely through code.",
  "keywords": [
    "mmo",
    "game",
    "typescript",
    "node",
    "multiplayer",
    "programming",
    "websockets",
    "coding game"
  ],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@types/node": "20.2.5",
    "vitest": "^3.2.4"
  },
  "exports": {
    ".": "./build/index.js",
    "./base-client": "./build/base-client.js",
    "./monsters": "./build/monsters.js",
    "./items": "./build/items.js",
    "./spells": "./build/spells.js",
    "./types": "./build/types.js",
    "./weapon-skills": "./build/weapon-skills.js",
    "./recipes": "./build/recipes.js",
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc -w",
    "test": "vitest",
    "prepublish": "npm run build"
  }
}