programming-game
Version:
The client for programming game, an mmorpg that you interact with entirely through code.
40 lines (39 loc) • 1.08 kB
JSON
{
"name": "programming-game",
"version": "0.3.0",
"description": "The client for programming game, an mmorpg that you interact with entirely through code.",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"test": "vitest",
"prepublish": "npm run build"
},
"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",
"./constants": "./build/constants.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"
}
}