-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.56 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "network-ai",
"version": "4.11.2",
"description": "AI agent orchestration framework for TypeScript/Node.js - 17 adapters (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw, A2A, Codex, MiniMax, NemoClaw, APS + streaming variants). Built-in CLI, security, swarm intelligence, real-time streaming, and agentic workflow patterns.",
"homepage": "https://network-ai.org",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"network-ai": "./dist/bin/cli.js",
"network-ai-server": "./dist/bin/mcp-server.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:all": "tsc",
"prebuild": "node -e \"const fs=require('fs');if(fs.existsSync('dist'))fs.rmSync('dist',{recursive:true})\"",
"prepublishOnly": "npm run build && npm run test:all",
"test": "npx ts-node test-standalone.ts",
"test:security": "npx ts-node test-security.ts",
"test:adapters": "npx ts-node test-adapters.ts",
"test:priority": "npx ts-node test-priority.ts",
"test:phase4": "npx ts-node test-phase4.ts",
"test:phase5": "npx ts-node test-phase5.ts",
"test:phase5b": "npx ts-node test-phase5b.ts",
"test:phase5c": "npx ts-node test-phase5c.ts",
"test:phase5d": "npx ts-node test-phase5d.ts",
"test:phase5e": "npx ts-node test-phase5e.ts",
"test:phase5f": "npx ts-node test-phase5f.ts",
"test:phase5g": "npx ts-node test-phase5g.ts",
"test:phase6": "npx ts-node test-phase6.ts",
"test:streaming": "npx ts-node test-streaming.ts",
"test:a2a": "npx ts-node test-a2a.ts",
"test:codex": "npx ts-node test-codex.ts",
"test:nemoclaw": "npx ts-node test-nemoclaw.ts",
"test:cli": "npx ts-node test-cli.ts",
"test:qa": "npx ts-node test-qa.ts",
"test:all": "npx ts-node run-tests.ts",
"setup": "npx ts-node setup.ts",
"setup:check": "npx ts-node setup.ts --check",
"setup:example": "npx ts-node setup.ts --example",
"demo": "npx ts-node examples/demo-runner.ts",
"blackboard": "python scripts/blackboard.py",
"check-permission": "python scripts/check_permission.py",
"validate-token": "python scripts/validate_token.py",
"revoke-token": "python scripts/revoke_token.py"
},
"keywords": [
"ai-agents",
"agentic-ai",
"multi-agent",
"multi-agent-systems",
"agent-framework",
"llm",
"llm-agents",
"orchestration",
"swarm",
"swarm-intelligence",
"autonomous-agents",
"agentic-workflow",
"agentic-framework",
"generative-ai",
"mcp",
"model-context-protocol",
"langchain",
"autogen",
"crewai",
"openclaw",
"llamaindex",
"semantic-kernel",
"openai-assistants",
"haystack",
"dspy",
"agno",
"typescript",
"nodejs",
"plug-and-play",
"adapter",
"a2a",
"ai-orchestration",
"context-engineering",
"agent-coordination"
],
"author": "OpenClaw Community",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Jovancoding"
},
"repository": {
"type": "git",
"url": "https://github.com/Jovancoding/Network-AI.git"
},
"engines": {
"node": ">=18.0.0",
"python": ">=3.9"
},
"devDependencies": {
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"openai": "^6.32.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"files": [
"dist/",
"bin/",
"types/",
"scripts/",
"README.md",
"QUICKSTART.md",
"INTEGRATION_GUIDE.md",
"SKILL.md",
"LICENSE"
],
"dependencies": {
"commander": "^14.0.3"
}
}