-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.33 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
{
"name": "@ahmedtaha/aether",
"version": "0.2.0",
"description": "AETHER — Autonomous Agent Orchestration Framework",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"aether": "./bin/aether.ts",
"aether-mcp": "./bin/aether-mcp.ts"
},
"scripts": {
"dev": "bun run bin/aether.ts",
"link:start": "bun run protocol/server.ts",
"test": "bun test",
"build": "bun build bin/aether.ts --outdir ./dist --target bun",
"build:mcp": "bun build bin/aether-mcp.ts --outdir ./dist --target bun",
"compile": "bun run dsl/cli.ts",
"prepublishOnly": "bun run build && bun run build:mcp"
},
"files": [
"dist/",
"bin/",
"core/",
"nexus/",
"protocol/",
"providers/",
"transports/",
"dsl/",
"agents/",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core/*": "./core/*",
"./protocol/*": "./protocol/*"
},
"engines": {
"bun": ">=1.1.0"
},
"keywords": [
"ai",
"agents",
"orchestration",
"llm",
"framework",
"multi-agent",
"rag",
"bun"
],
"license": "BSL-1.1",
"devDependencies": {
"@types/bun": "latest"
},
"dependencies": {
"msgpackr": "^1.11.8",
"sqlite-vec": "^0.1.7-alpha.2"
}
}