-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.75 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
{
"name": "@animalabs/agent-framework",
"version": "0.8.0",
"description": "Multi-agent framework with pluggable modules, persistent state, and concurrent tool execution",
"repository": {
"type": "git",
"url": "git+https://github.com/anima-research/agent-framework.git"
},
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist",
"src"
],
"bin": {
"agent-framework-mcp": "./dist/src/api/mcp-server.js",
"agent-framework-recover": "./dist/src/recovery/recover-cli.js"
},
"scripts": {
"build": "tsc",
"postbuild": "node -e \"const fs=require('node:fs'); for (const p of ['dist/src/api/mcp-server.js','dist/src/recovery/recover-cli.js']) fs.chmodSync(p, 0o755)\"",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"pretest": "mkdir -p dist/test/fixtures && cp test/fixtures/*.mjs dist/test/fixtures/",
"test": "node --test --test-force-exit dist/test/*.test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"connectome",
"agent",
"framework",
"llm",
"multi-agent",
"modules"
],
"author": "Anima Research",
"license": "MIT",
"dependencies": {
"@animalabs/chronicle": "^0.2.2",
"@animalabs/context-manager": "^0.6.0",
"@animalabs/membrane": "^0.5.75",
"chokidar": "^4.0.3",
"discord.js": "^14.25.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.5.13",
"discord.js": "^14.25.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
}
}