-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.53 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
58
59
60
61
62
63
64
65
66
67
{
"name": "bare-agent",
"version": "0.10.4",
"files": [
"index.js",
"src/",
"bin/",
"tools/",
"LICENSE",
"NOTICE"
],
"description": "Lightweight, composable agent orchestration for autonomous agents. Multi-agent primitives (spawn, defer, MCP meta-tools), single-gate governance via bareguard, cross-platform shell tools, MCP bridge. ~2.7K lines core, one required dep.",
"license": "Apache-2.0",
"author": "hamr0",
"repository": {
"type": "git",
"url": "git+https://github.com/hamr0/bareagent.git"
},
"main": "index.js",
"bin": {
"bare-agent": "bin/cli.js"
},
"exports": {
".": "./index.js",
"./errors": "./src/errors.js",
"./providers": "./src/providers.js",
"./stores": "./src/stores.js",
"./transports": "./src/transports.js",
"./tools": "./src/tools.js",
"./mcp": "./src/mcp.js",
"./bareguard": "./src/bareguard-adapter.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=18"
},
"keywords": [
"agent",
"llm",
"orchestration",
"ai",
"tool-calling",
"planner",
"lightweight",
"bareguard",
"governance"
],
"dependencies": {
"bareguard": "^0.4.2"
},
"optionalDependencies": {
"barebrowse": "^0.5.0",
"baremobile": "^0.7.0",
"cron-parser": "^4.9.0"
},
"peerDependencies": {
"better-sqlite3": ">=9.0.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"scripts": {
"test": "node --test --test-force-exit test/**/*.test.js"
}
}