-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "httpsock",
"version": "1.1.3",
"description": "WebSocket-like data streaming over HTTP/S with Express.js and Node.js. Supports multiple servers, broadcasters, and clients, without the WebSocket protocol.",
"main": "index.js",
"scripts": {
"test": "npx jest",
"server": "node demos/server/index.js",
"broadcast": "node demos/broadcast/index.js",
"client": "node demos/client/index.js"
},
"exports": {
"./server": {
"import": "./server.mjs",
"require": "./server.js",
"default": "./server.js"
},
"./server.mjs": "./server.mjs",
"./server.js": "./server.js",
"./broadcast": {
"import": "./broadcast.mjs",
"require": "./broadcast.js",
"default": "./broadcast.js"
},
"./broadcast.mjs": "./broadcast.mjs",
"./broadcast.js": "./broadcast.js",
"./client": {
"import": "./client.mjs",
"require": "./client.js",
"default": "./client.js"
},
"./client.mjs": "./client.mjs",
"./client.js": "./client.js"
},
"keywords": [
"nodejs",
"room",
"http",
"client",
"socket",
"streaming",
"express",
"node",
"server",
"sockets",
"https",
"websocket",
"websockets",
"data-stream",
"expressjs",
"broadcast",
"ws",
"data-streaming",
"httpsock",
"rooms"
],
"repository": {
"type": "git",
"url": "git+https://github.com/faisalnjs/httpsock.git"
},
"author": "Faisal N",
"license": "ISC",
"bugs": {
"url": "https://github.com/faisalnjs/httpsock/issues"
},
"homepage": "https://faisaln.com/packages/httpsock",
"dependencies": {
"express": "^5.2.1"
},
"devDependencies": {
"omggif": "^1.0.10",
"pngjs": "^6.0.0"
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}