-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "cortexos",
"version": "1.0.0",
"description": "Intelligent Agent Operating System",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"db:migrate": "tsx src/db/migrate.ts",
"lint": "eslint src --ext .ts"
},
"keywords": [
"ai",
"agent",
"autonomous"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.81.0",
"@fastify/cors": "^8.5.0",
"@google/generative-ai": "^0.24.1",
"@mistralai/mistralai": "^2.1.2",
"@modelcontextprotocol/sdk": "^1.0.4",
"@pinecone-database/pinecone": "^7.1.0",
"@supabase/supabase-js": "^2.101.1",
"bullmq": "^5.1.9",
"dotenv": "^16.4.1",
"fastify": "^4.26.0",
"googleapis": "^144.0.0",
"groq-sdk": "^1.1.2",
"ioredis": "^5.3.2",
"openai": "^4.28.0",
"pg": "^8.11.3",
"playwright": "^1.59.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}