-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "cross-llm",
"type": "module",
"version": "0.1.3",
"description": "Use every LLM in every environment with one simple API",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"test": "vitest",
"example": "tsx ./scripts/run-example.ts",
"print-models": "tsx ./scripts/print-models.ts",
"build": "pkgroll"
},
"files": ["dist", "README.md", "LICENSE", "package.json"],
"author": "Aron Homberg <info@aron-homberg.de>",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "0.24.1",
"@google-cloud/vertexai": "1.1.0",
"cohere-ai": "7.10.1",
"openai-fetch": "2.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"dotenv": "^16.4.5",
"pkgroll": "^2.1.1",
"spawn-please": "^3.0.0",
"tsx": "^4.16.2",
"prettyjson": "^1.2.5",
"typescript": "^5.0.0",
"vitest": "^1.6.0"
}
}