31 lines
689 B
JSON
31 lines
689 B
JSON
{
|
|
"name": "chat",
|
|
"version": "1.0.0",
|
|
"description": "Simple plug & play, zeroconfig chat.",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "nodejs server.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/m1k1o/chat.git"
|
|
},
|
|
"keywords": [
|
|
"chat",
|
|
"nodejs",
|
|
"javascript"
|
|
],
|
|
"author": "m1k1o",
|
|
"license": "GPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/m1k1o/chat/issues"
|
|
},
|
|
"homepage": "https://github.com/m1k1o/chat#readme",
|
|
"dependencies": {
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.2",
|
|
"socket.io": "^4.8.0"
|
|
}
|
|
}
|