-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.28 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.28 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
{
"name": "agent-forge",
"version": "2.1.2",
"description": "A TypeScript framework for creating and orchestrating AI agents with LLM integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"docs:build": "docusaurus build docs --out-dir build/docs",
"docs:clear": "docusaurus clear docs",
"docs:deploy": "docusaurus deploy docs",
"docs:dev": "docusaurus start docs --port 3001",
"docs:serve": "docusaurus serve docs --out-dir build/docs --port 3001",
"docs:swizzle": "docusaurus swizzle docs",
"docs:write-translations": "docusaurus write-translations docs",
"docs:write-heading-ids": "docusaurus write-heading-ids docs",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "jest --passWithNoTests",
"lint": "biome check src/",
"format": "biome format --write src/",
"lint:fix": "biome check --apply src/",
"lint:fix:all": "biome check --apply-unsafe src/",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"example:simple-agent": "ts-node src/examples/simple-agent.ts",
"example:stock-analysis": "ts-node src/examples/stock-analysis/index.ts",
"example:a2a-server": "ts-node src/examples/a2a-example/a2a-server-example.ts",
"example:a2a-team": "ts-node src/examples/a2a-example/a2a-team-example.ts",
"example:tool-example": "ts-node src/examples/tool-example.ts",
"example:rag-train": "ts-node src/examples/rag-example/train-documents.ts",
"example:rag-team": "ts-node src/examples/rag-example/rag-team-example.ts",
"example:rag-simple": "ts-node src/examples/rag-example/simple-rag-example.ts",
"example:plugins": "ts-node src/examples/plugin-example/index.ts"
},
"keywords": [
"ai",
"agents",
"llm",
"framework",
"typescript",
"yaml"
],
"author": "",
"license": "MIT",
"dependencies": {
"@microsoft/fetch-event-source": "2.0.1",
"@modelcontextprotocol/sdk": "1.12.0",
"axios": "1.12.0",
"cheerio": "1.0.0",
"chromadb": "2.4.6",
"dotenv": "16.5.0",
"event-source-polyfill": "1.0.31",
"eventsource": "4.0.0",
"token.js": "0.7.1",
"typescript": "5.8.3",
"yaml": "2.8.0",
"zod": "3.25.23"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@bobvanderlinden/semantic-release-pull-request-analyzer": "^1.0.4",
"@docusaurus/core": "^3.7.0",
"@docusaurus/preset-classic": "^3.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eventsource": "^3.0.0",
"@types/jest": "^29.5.14",
"@types/node": "22.15.21",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"jest": "^29.7.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"semantic-release": "^24.2.4",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frostlogic-ab/agent-forge.git"
},
"bugs": {
"url": "https://github.com/frostlogic-ab/agent-forge/issues"
},
"homepage": "https://github.com/frostlogic-ab/agent-forge#readme",
"packageManager": "yarn@4.7.0"
}