-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"name": "@sym-bot/sym",
"version": "0.5.8",
"description": "Infrastructure and protocol for multi-agent collective intelligence",
"main": "lib/node.js",
"bin": {
"sym": "./bin/sym.js",
"sym-daemon": "./bin/sym-daemon.js"
},
"scripts": {
"test": "node --test tests/*.test.js",
"test:integration": "node --test --test-timeout=30000 --test-concurrency=1 tests/integration/*.js"
},
"keywords": [
"mesh",
"collective-intelligence",
"ai-agents",
"multi-agent",
"peer-to-peer",
"bonjour",
"svaf"
],
"author": "SYM.BOT <info@sym.bot> (https://sym.bot)",
"license": "Apache-2.0",
"homepage": "https://github.com/sym-bot/sym",
"repository": {
"type": "git",
"url": "https://github.com/sym-bot/sym.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@sym-bot/core": "^0.3.36",
"bonjour-service": "^1.3.0",
"ws": "^8.20.0"
},
"overrides": {
"protobufjs": "^7.5.6"
},
"files": [
"bin/",
"lib/",
".agents/",
".claude/",
"LICENSE",
"README.md"
]
}