-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (75 loc) · 1.49 KB
/
package.json
File metadata and controls
76 lines (75 loc) · 1.49 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
{
"name": "@rabbx/ws",
"version": "1.1.0",
"description": "Zero-dep WebSocket for Node, Bun, Deno, Workers, Browser",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"scripts": {
"build": "bun scripts/build.js",
"dev": "bun --watch scripts/build.js",
"test": "bun test",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"default": "./dist/server.js"
}
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.6.0",
"ws": "^8.20.0"
},
"files": [
"dist","licence.md","package.json"
],
"engines": {
"node": ">=18",
"bun": ">=1.0.0"
},
"repository":{
"type":"git",
"url":"https://github.com/rabbxdev/ws.git"
},
"homepage":"https://github.com/rabbxdev/ws.git",
"author":"rabbx team",
"keywords": [
"websocket",
"ws",
"rfc6455",
"real-time",
"zero-dependency",
"zero-dep",
"bun",
"deno",
"cloudflare-workers",
"node",
"isomorphic",
"universal",
"web-socket",
"web-standard",
"eventtarget",
"client",
"server",
"wss",
"websockets",
"chat",
"streaming",
"bidirectional",
"fast",
"lightweight",
"small",
"edge",
"serverless"
],
"licence":"MIT"
}