-
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.38 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "@sym-bot/xmesh-agent",
"version": "0.1.17",
"description": "The autonomous agent runtime for xmesh — wake-on-admission reasoning with wake-budget, cycle detection, token cap, and approval gates, agent-to-agent over the open mesh.",
"main": "src/index.js",
"bin": {
"xmesh-agent": "src/cli/index.js"
},
"scripts": {
"test": "node --test test/*.test.js",
"test:coverage": "node --test --experimental-test-coverage test/*.test.js",
"test:coverage:check": "node scripts/check-coverage.js",
"smoke": "node --test test/*.smoke.js",
"lint": "eslint src/ test/",
"release": "node scripts/release.mjs"
},
"files": [
"src/",
"examples/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.91.0",
"@iarna/toml": "^2.2.5",
"@sym-bot/sym": "^0.7.32",
"openai": "^6.34.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"xmesh",
"xmesh-agent",
"mesh-memory-protocol",
"mmp",
"cat7",
"svaf",
"collective-intelligence",
"agent-to-agent",
"autonomous-agent"
],
"author": "SYM.BOT",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"homepage": "https://xmesh.bot",
"repository": {
"type": "git",
"url": "https://github.com/sym-bot/xmesh-agent.git"
},
"devDependencies": {
"eslint": "^10.2.1"
}
}