-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 874 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 874 Bytes
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
{
"name": "remote-controller",
"version": "1.0.6",
"description": "Remote Controller is the easiest way to interact across Websockets, Webworkers and WebRTC. The library is small, dependancy free, performant and powerful.",
"keywords": ["WebSockets", "WebWorkers", "Worker", "Network", "Remote"],
"homepage": "https://github.com/econsta/remote-controller",
"bugs": "https://github.com/econsta/remote-controller/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/econsta/remote-controller.git"
},
"license": "MIT",
"main": "./src/remote.js",
"type": "module",
"scripts": {
"start": "node ./tests/examples/messager/server.js",
"test": "node --test --test-force-exit"
},
"devDependencies": {
"@types/node": "^22.9.0",
"fast-check": "^3.22.0",
"web-worker": "1.2.0",
"ws": "^8.18.0"
}
}