-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
49 lines (49 loc) · 1.06 KB
/
package.json
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": "experts",
"version": "1.6.1",
"description": "An opinionated panel of experts implementation using OpenAI's Assistants API",
"type": "module",
"scripts": {
"setup": "./bin/setup",
"test": "./bin/test",
"cleanup": "./bin/cleanup",
"build": "./bin/build"
},
"files": [
"bin",
"dist",
"src",
"test",
"CHANGELOG.md",
"index.js",
"jest.config.mjs",
"LICENSE.md",
"package.json",
"README.md"
],
"author": "Ken COllins",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.4",
"@opensearch-project/opensearch": "^2.7.0",
"axios": "^1.6.8",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"esbuild": "^0.23.1",
"file-type": "^19.0.0",
"glob": "^11.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"p-queue": "^7.4.1",
"zod": "^3.23.8"
},
"repository": {
"type": "git",
"url": "https://github.com/metaskills/experts"
},
"dependencies": {
"eventemitter2": "^6.4.9",
"openai": "^4.55.0"
}
}