-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.25 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.25 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
{
"name": "bare-agent",
"version": "0.7.0",
"files": [
"index.js",
"src/",
"bin/",
"tools/"
],
"description": "Lightweight, composable agent orchestration for autonomous agents. Loop policy + audit, cost caps, cross-platform shell tools, MCP bridge. ~2.6K lines core, 0 required deps.",
"license": "MIT",
"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",
"./providers": "./src/providers.js",
"./stores": "./src/stores.js",
"./transports": "./src/transports.js",
"./tools": "./src/tools.js",
"./mcp": "./src/mcp.js",
"./policy": "./src/policy.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"agent",
"llm",
"orchestration",
"ai",
"tool-calling",
"planner",
"lightweight"
],
"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/**/*.test.js"
}
}