-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "llm-adapter-kit",
"version": "1.0.0",
"description": "Universal LLM adapter library with support for OpenAI, Anthropic, Google, Mistral, OpenRouter, and Requesty",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"llm",
"ai",
"openai",
"anthropic",
"google",
"gemini",
"mistral",
"claude",
"gpt",
"adapter",
"typescript",
"openrouter",
"requesty"
],
"author": "Synaptic Labs",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.56.0",
"@google/genai": "^1.9.0",
"@mistralai/mistralai": "^1.7.4",
"axios": "^1.10.0",
"dotenv": "^16.4.5",
"groq-sdk": "^0.27.0",
"openai": "^5.9.2",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/synaptic-labs/llm-adapter-kit.git"
},
"bugs": {
"url": "https://github.com/synaptic-labs/llm-adapter-kit/issues"
},
"homepage": "https://github.com/synaptic-labs/llm-adapter-kit#readme",
"publishConfig": {
"access": "public"
}
}