-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 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
{
"dependencies": {
"ws": "^8.18.3"
},
"name": "wsmini",
"version": "1.2.0",
"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.0",
"jsdom": "^27.0.0",
"mocha": "^11.7.4",
"sinon": "^21.0.0",
"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",
"bugs": {
"url": "https://github.com/Chabloz/WsMini/issues"
},
"homepage": "https://github.com/Chabloz/WsMini#readme"
}