-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "@mfbtech/llm-popular",
"version": "0.0.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/"
},
"author": "MFB Technologies, Inc.",
"license": "MIT",
"devDependencies": {
"@rushstack/eslint-config": "~3.3.4",
"@types/node": "~20.14.15",
"@typescript-eslint/eslint-plugin": "~6.4.1",
"@typescript-eslint/parser": "~6.4.1",
"dotenv": "^16.4.7",
"eslint": "8.48.0",
"prettier": "~2.8.8",
"rimraf": "~6.0.1",
"typescript": "~5.5.4",
"@mfbtech/llm-api-types": "^0.0.1",
"vite-node": "^2.1.8"
},
"dependencies": {
"@anthropic-ai/sdk": "~0.32.1",
"@aws-sdk/client-bedrock-runtime": "~3.716.0",
"@google/generative-ai": "~0.21.0",
"nanoid": "~3.3.8",
"openai": "~4.76.0"
}
}