swordfight-engine
Version:
A multiplayer sword fighting game engine with character management, round-based combat, and real-time multiplayer support
60 lines (59 loc) • 1.5 kB
JSON
{
"name": "swordfight-engine",
"version": "1.0.6",
"description": "A multiplayer sword fighting game engine with character management, round-based combat, and real-time multiplayer support",
"type": "module",
"main": "dist/swordfight-engine.js",
"exports": {
".": "./dist/swordfight-engine.js",
"./min": "./dist/swordfight-engine.min.js"
},
"scripts": {
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix",
"build": "npm run lint && npm run bundle",
"bundle": "node build.js",
"dev": "node build.js --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --experimental-modules src/SwordFight.Game.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"game",
"sword-fighting",
"multiplayer",
"javascript",
"es6",
"browser-game",
"real-time",
"combat",
"rpg"
],
"author": "Michael",
"license": "MIT",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"@eslint/js": "^9.0.0",
"esbuild": "^0.21.5",
"eslint": "^9.0.0",
"globals": "^15.0.0"
},
"dependencies": {
"trystero": "^0.21.4"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MWDelaney/swordfight.engine"
},
"bugs": {
"url": "https://github.com/MWDelaney/swordfight-engine/issues"
},
"homepage": "https://github.com/MWDelaney/swordfight-engine#readme"
}