-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
50
51
{
"name": "multi-llm-ts",
"version": "2.8.3",
"description": "Library to query multiple LLM providers in a consistent way",
"repository": {
"type": "git",
"url": "https://github.com/nbonamy/llm-ts.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint '**/*.ts'",
"test": "vitest",
"check": "npm run lint && npx vitest --run && npm run build",
"testui": "vitest --ui --coverage.enabled=true",
"example": "tsx ./example/index.ts"
},
"author": {
"name": "Nicolas Bonamy",
"email": "nicolas@bonamy.fr"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@google/generative-ai": "^0.21.0",
"@mistralai/mistralai": "^1.1.0",
"groq-sdk": "^0.9.1",
"minimatch": "^10.0.1",
"ollama": "^0.5.11",
"openai": "^4.77.3"
}
}