-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 838 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "node-sockets",
"version": "1.0.0",
"description": "A \"scratch implementation\" of Node.js based web sockets connections refers to a custom implementation of web sockets using the Node.js runtime environment. Web sockets allow for real-time, bidirectional communication between a client (such as a web browser) and a server. They are often used for applications that require real-time updates, such as chat rooms or collaborative platforms.",
"main": "index.js",
"scripts": {
"test": "nodemon server.mjs",
"pretify": "npx prettier --write ."
},
"repository": "https://github.com/innovatorved/node-sockets.git",
"author": "Ved Gupta <vedgupta@protonmail.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"nodemon": "^2.0.20",
"prettier": "^2.8.1"
}
}