-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.63 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
{
"name": "hypha",
"version": "1.0.0",
"private": true,
"description": "Harness-oriented agent system framework for production-grade LLM agent applications",
"main": "dist/apps/server/app.js",
"workspaces": [
"packages/*",
"apps/*"
],
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "npm run build:packages && ts-node -r dotenv/config -P apps/server/tsconfig.json apps/server/src/app.ts",
"build": "npm run build:packages && npm run build:server && npm run build:cli",
"build:packages": "tsc -b packages/core packages/storage packages/inference packages/fsm packages/kernel packages/harness packages/models packages/serving-cache packages/workcache packages/memory packages/tools packages/mcp packages/skills packages/domain packages/adapters-local packages/testing",
"build:server": "tsc -p apps/server/tsconfig.json",
"build:cli": "tsc -p apps/cli/tsconfig.json && node scripts/make-cli-executable.mjs",
"start": "node dist/apps/server/app.js",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"typecheck:server": "tsc -p apps/server/tsconfig.json --noEmit",
"typecheck:cli": "tsc -p apps/cli/tsconfig.json --noEmit",
"typecheck:packages": "tsc -p tsconfig.typecheck.json --noEmit",
"test": "npm run test:unit && npm run test:packages && npm run test:integration",
"test:unit": "jest --selectProjects unit --forceExit",
"test:packages": "vitest run",
"test:integration": "jest --selectProjects integration --runInBand --forceExit",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --forceExit",
"lint": "eslint \"apps/**/*.ts\" \"packages/**/*.ts\" \"tests/**/*.ts\"",
"lint:fix": "eslint \"apps/**/*.ts\" \"packages/**/*.ts\" \"tests/**/*.ts\" --fix",
"format": "prettier --write \"apps/**/*.ts\" \"packages/**/*.ts\" \"tests/**/*.ts\"",
"cli": "ts-node -r dotenv/config -P apps/cli/tsconfig.json apps/cli/index.ts",
"prepare": "husky install"
},
"keywords": [
"ai",
"agent",
"llm",
"claude",
"openai",
"gemini",
"mcp",
"mongodb",
"redis"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"@google/generative-ai": "^0.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.10.0",
"chalk": "^5.6.2",
"commander": "^13.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.11.0",
"dotenv": "^16.3.0",
"express": "^4.18.2",
"express-rate-limit": "^7.1.0",
"helmet": "^7.1.0",
"ioredis": "^5.3.0",
"joi": "^17.11.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.0.0",
"openai": "^4.28.0",
"pino": "^8.17.0",
"pino-pretty": "^10.3.0",
"typescript": "^5.3.0",
"uuid": "^11.1.1",
"winston": "^3.11.0",
"yaml": "^2.3.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.17.21",
"@types/node": "^20.19.41",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"axios": "^1.14.0",
"eslint": "^8.57.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"supertest": "^7.2.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=18.0.0"
}
}