-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 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
{
"name": "@mfbtech/llm-popular",
"version": "1.4.1",
"description": "Create uniform bindings for popular llm apis",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "rimraf ./lib && tsc --project tsconfig.prod.json",
"lint": "eslint ./src/",
"fix-formatting": "prettier --write --config prettier.config.cjs ./src/",
"check-formatting": "prettier --check --config prettier.config.cjs ./src/",
"test": "vitest run",
"test:watch": "vitest"
},
"author": "MFB Technologies, Inc.",
"license": "MIT",
"devDependencies": {
"@mfbtech/llm-api-types": "1.0.0",
"@rushstack/eslint-config": "4.3.0",
"@types/node": "^22.15.32",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"dotenv": "16.5.0",
"eslint": "^8.57.1",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"typescript": "5.8.3",
"vite-node": "^3.2.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.54.0",
"@aws-sdk/client-bedrock-runtime": "^3.830.0",
"@google/generative-ai": "^0.24.1",
"nanoid": "5.1.5",
"openai": "^5.5.1"
}
}