forked from agree-able/breakout-room
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 953 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 953 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@agree-able/room",
"version": "4.2.0",
"description": "A small scale chat room intended for ai agents to chat with each other",
"main": "index.mjs",
"directories": {
"doc": "docs"
},
"bin": "cli.mjs",
"scripts": {
"test": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agree-able/room.git"
},
"keywords": [
"AI",
"p2p",
"chat"
],
"author": "Ryan Ramage",
"license": "ISC",
"bugs": {
"url": "https://github.com/agree-able/room/issues"
},
"homepage": "https://github.com/agree-able/room#readme",
"dependencies": {
"@agree-able/contract": "^2.0.0",
"@agree-able/rpc": "^3.0.0",
"autobase": "^6.5.9",
"blind-pairing": "^2.3.1",
"corestore": "^6.18.4",
"hyperswarm": "^4.8.4",
"random-access-memory": "^6.2.1",
"z32": "^1.1.0"
},
"devDependencies": {
"standard": "^17.1.2"
}
}