31 lines
678 B
JSON
31 lines
678 B
JSON
{
|
|
"name": "pixelbattle",
|
|
"version": "1.0.0",
|
|
"description": "Self-hosted pixelbattle written in NodeJS",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "node index.js",
|
|
"dev": "nodemon src/index.js",
|
|
"prod": "node src/index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.foxarmy.org/leca/pixelbattle"
|
|
},
|
|
"keywords": [
|
|
"pixelbattle",
|
|
"selfhosted"
|
|
],
|
|
"author": "leca",
|
|
"license": "GPL-3.0-or-later",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"jimp": "^0.22.10",
|
|
"nodemon": "^3.0.1",
|
|
"pug": "^3.0.2",
|
|
"ws": "^8.13.0",
|
|
"wss": "^3.3.4"
|
|
}
|
|
}
|