-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
64 lines (63 loc) · 1.46 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": "genesis-forge",
"version": "1.2.1",
"description": "A multi-agent AI orchestration kit with 79 skills, 24 specialist agents, and 13 slash-command workflows.",
"type": "module",
"main": "./lib/index.js",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"genesis-forge": "./bin/setup.js",
"genesis-mcp": "./lib/mcp-server.js"
},
"exports": {
".": "./lib/index.js",
"./agents": "./agent/agents",
"./skills": "./agent/skills",
"./mcp": "./lib/mcp-server.js"
},
"files": [
"agent/",
"bin/",
"lib/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test agent/tests/**/*.test.js",
"lint": "eslint bin lib",
"build-registry": "python3 agent/scripts/build_skill_registry.py",
"postinstall": "node bin/postinstall.js",
"mcp-server": "node lib/mcp-server.js"
},
"keywords": [
"ai-agent",
"multi-agent",
"orchestration",
"workflow",
"gemini",
"llm",
"copilot",
"skills",
"automation",
"mcp"
],
"author": "CodeForgeNet",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeForgeNet/Genesis-Forge.git"
},
"homepage": "https://github.com/CodeForgeNet/Genesis-Forge#readme",
"bugs": {
"url": "https://github.com/CodeForgeNet/Genesis-Forge/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.0"
}
}