-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.81 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.81 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
{
"name": "forever-ai",
"version": "2.0.0",
"description": "Forever is a TypeScript-native AI Agent framework featuring multi-agent orchestration, unified LLM adapter, end-to-end RAG pipeline, and comprehensive safety guardrails.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/badhope/forever.git"
},
"homepage": "https://github.com/badhope/forever",
"bugs": {
"url": "https://github.com/badhope/forever/issues"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:prod": "prisma migrate deploy",
"prisma:studio": "prisma studio",
"db:push": "prisma db push",
"db:reset": "prisma migrate reset --force",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"dev": "tsx watch backend/main.ts",
"demo": "tsx backend/examples/quickstart-demo.ts",
"start": "tsx backend/main.ts"
},
"keywords": [
"ai",
"agent",
"ai-agent",
"multi-agent",
"llm",
"rag",
"retrieval-augmented-generation",
"vector-store",
"typescript",
"nodejs",
"ai-framework",
"llm-framework"
],
"author": {
"name": "badhope",
"url": "https://github.com/badhope"
},
"contributors": [],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": "./backend/core/index.ts",
"./memory": "./backend/core/memory/index.ts",
"./knowledge": "./backend/core/knowledge/index.ts",
"./llm": "./backend/core/llm/index.ts",
"./agent": "./backend/core/agent/index.ts",
"./tools": "./backend/core/tools/index.ts",
"./database": "./backend/core/database/index.ts",
"./multi-agent": "./backend/core/multi-agent/index.ts",
"./application": "./backend/core/application/index.ts",
"./infrastructure": "./backend/core/infrastructure/index.ts"
},
"devDependencies": {
"@types/eventemitter3": "^5.0.0",
"@types/express": "^5.0.6",
"@types/node": "^25.9.2",
"@types/retry": "^0.12.5",
"@types/uuid": "^11.0.0",
"@types/ws": "^8.5.10",
"prisma": "^7.8.0",
"tsx": "^4.0.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"dependencies": {
"@prisma/client": "^7.8.0",
"ajv": "^8.20.0",
"chokidar": "^5.0.0",
"dotenv": "^17.4.2",
"eventemitter3": "^5.0.0",
"express": "^5.2.1",
"file-type": "^22.0.1",
"json5": "^2.2.3",
"lru-cache": "^11.5.1",
"opossum": "^9.0.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"retry": "^0.13.1",
"uuid": "^14.0.0",
"ws": "^8.16.0",
"zod": "^4.4.3"
}
}