-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "quantum",
"version": "1.0.0",
"description": "Experiments with LLMs",
"main": "index.js",
"repository": "https://github.com/artsy/quantum",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0"
},
"scripts": {
"lint": "eslint src",
"format": "prettier --no-error-on-unmatched-pattern --write src/**/*.{ts,json,md} *.md",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.14",
"@ai-sdk/openai": "^0.0.13",
"@anthropic-ai/sdk": "^0.21.1",
"ai": "^3.1.12",
"chalk": "5.3.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dedent": "^1.5.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"graphql": "^16.8.1",
"lodash": "^4.17.21",
"openai": "^4.33.0",
"p-all": "^5.0.0",
"p-series": "^3.0.0",
"weaviate-ts-client": "^2.1.1",
"zod": "^3.23.8"
}
}