-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"dependencies": {
"ws": "^8.20.0"
},
"name": "wsmini",
"version": "1.2.1",
"description": "Minimalist WebSocket client and server for real-time applications with RPC, PubSub, Rooms and Game state synchronization.",
"main": "src/index.js",
"browser": "src/browser.js",
"exports": {
".": {
"browser": "./src/browser.js",
"node": "./src/index.js",
"default": "./src/index.js"
},
"./client": "./src/browser.js",
"./server": "./src/node.js"
},
"devDependencies": {
"c8": "^10.1.2",
"chai": "^6.2.2",
"jsdom": "^27.4.0",
"mocha": "^11.7.5",
"sinon": "^21.0.3",
"sinon-chai": "^4.0.1"
},
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"scripts": {
"test": "mocha test/**/*.test.mjs",
"test:watch": "mocha test/**/*.test.mjs --watch",
"test:coverage": "c8 mocha test/**/*.test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chabloz/WsMini.git"
},
"keywords": [
"WebSocket",
"real-time",
"RPC",
"PubSub",
"rooms",
"game-development",
"state-synchronization",
"fixed-timestep",
"game-loop"
],
"author": "Nicolas Chabloz",
"license": "MIT",
"overrides": {
"mocha": {
"diff": "8.0.4",
"serialize-javascript": "7.0.5"
}
},
"bugs": {
"url": "https://github.com/Chabloz/WsMini/issues"
},
"homepage": "https://github.com/Chabloz/WsMini#readme"
}