-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
{
"name": "@pluggedin/compass-agent",
"version": "1.0.0",
"description": "Compass - AI Jury/Oracle agent for multi-model consensus research",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/",
"type-check": "tsc --noEmit"
},
"keywords": [
"pap",
"agent",
"ai",
"consensus",
"jury",
"multi-model"
],
"author": "Plugged.in",
"license": "MIT",
"dependencies": {
"express": "^4.21.0",
"cors": "^2.8.5",
"helmet": "^8.0.0",
"zod": "^3.23.8",
"openai": "^4.70.0",
"@anthropic-ai/sdk": "^0.32.0",
"@google/generative-ai": "^0.21.0",
"natural": "^8.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/express": "^5.0.0",
"@types/cors": "^2.8.17",
"@types/uuid": "^10.0.0",
"typescript": "^5.6.3",
"tsx": "^4.19.2",
"eslint": "^9.14.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0"
},
"engines": {
"node": ">=20.0.0"
}
}