forked from upstash/rag-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.23 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
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
80
81
82
83
84
85
86
87
88
{
"name": "@upstash/rag-chat",
"version": "1.0.5",
"main": "./dist/base/index.mjs",
"types": "./dist/base/index.d.ts",
"scripts": {
"test": "bun test",
"fmt": "prettier --write .",
"lint": "tsc && eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix",
"build": "tsup",
"prepare": "husky install"
},
"bugs": {
"url": "https://github.com/upstash/rag-chat/issues"
},
"description": "Simple RAG Chat using Upstash",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/base/index.d.ts",
"import": "./dist/base/index.mjs",
"require": "./dist/base/index.js"
},
"./nextjs": {
"types": "./dist/nextjs/index.d.ts",
"react-server": "./dist/nextjs/rsc-server.mjs",
"import": "./dist/nextjs/rsc-client.mjs"
}
},
"homepage": "https://upstash.com/vector",
"keywords": [
"vector",
"upstash",
"db",
"rag-chat",
"ai"
],
"author": "Oguzhan Olguncu <oguzhan@upstash.com>",
"repository": {
"type": "git",
"url": "https://github.com/upstash/rag-chat"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"bun-types": "latest",
"eslint": "^8",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^9.0.10",
"prettier": "^3.2.5",
"tsup": "latest",
"typescript": "^5.4.5",
"vitest": "latest"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.42",
"@ai-sdk/openai": "^0.0.44",
"@langchain/anthropic": "^0.2.15",
"@langchain/community": "^0.2.13",
"@langchain/core": "^0.2.9",
"@upstash/vector": "^1.1.3",
"ai": "^3.1.1",
"cheerio": "^1.0.0-rc.12",
"d3-dsv": "^3.0.1",
"html-to-text": "^9.0.5",
"langchain": "^0.2.0",
"nanoid": "^5.0.7",
"pdf-parse": "^1.1.1"
},
"peerDependencies": {
"@upstash/redis": "^1.31.3",
"@upstash/vector": "^1.1.3",
"@upstash/ratelimit": "^1.1.3",
"@langchain/openai": "^0.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"optionalDependencies": {
"langsmith": "^0.1.41",
"@langchain/mistralai": "^0.0.28"
}
}