-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.36 KB
/
package.json
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
{
"name": "angelia.io",
"version": "4.0.91",
"description": "WebSockets Server and Client API for node.js and the browser, with rooms support.",
"author": "@titoBouzout @boredofnames",
"license": "GPL",
"type": "module",
"exports": {
"./server": {
"types": "./types/server/index.js",
"default": "./server/index.js"
},
"./client": {
"types": "./types/client/index.js",
"default": "./client/index.js"
},
"./*": null
},
"dependencies": {
"bufferutil": "^4.0.8",
"formidable": "^3.5.2",
"utf-8-validate": "^6.0.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.9.1",
"typescript": "^5.6.3"
},
"scripts": {
"dev": "tsc -w"
},
"homepage": "https://github.com/titoBouzout/angelia.io",
"repository": {
"type": "git",
"url": "git+https://github.com/titoBouzout/angelia.io"
},
"keywords": [
"Client",
"Server",
"Socket",
"Sockets",
"WebSocket",
"WebSocketClient",
"WebSocketServer",
"events",
"rooms api",
"rooms",
"socket api",
"sockets api",
"io",
"ws"
],
"prettier": {
"printWidth": 70,
"useTabs": true,
"semi": false,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "avoid",
"proseWrap": "never",
"endOfLine": "lf",
"singleAttributePerLine": true
}
}