-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
96 lines (96 loc) · 2.42 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
89
90
91
92
93
94
95
96
{
"name": "@upstash/rag-chat",
"version": "1.0.5",
"main": "./index.mjs",
"module": "./index.mjs",
"types": "./index.d.ts",
"sideEffects": false,
"scripts": {
"test": "bun test src",
"fmt": "prettier --write .",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix",
"build": "tsup && cp package.json README.md LICENSE dist/",
"prepare": "husky",
"check-types": "tsc --noEmit",
"check-exports": "bun run build && cd dist && attw -P"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --ignore-unknown --write"
]
},
"bugs": {
"url": "https://github.com/upstash/rag-chat/issues"
},
"description": "Simple RAG Chat using Upstash",
"files": [
"./*"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./nextjs": {
"react-server": "./nextjs/rsc-server.mjs",
"import": "./nextjs/index.mjs",
"require": "./nextjs/index.js"
}
},
"homepage": "https://upstash.com/docs/vector/sdks/rag-chat",
"keywords": [
"vector",
"upstash",
"db",
"rag-chat",
"ai"
],
"author": "Oguzhan Olguncu <[email protected]>",
"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/bun": "^1.1.10",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"bun-types": "^1.1.19",
"eslint": "^9.11.0",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"tsup": "^8.3.0",
"typescript": "^5.4.5",
"vitest": "^2.1.1"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.44",
"@langchain/anthropic": "^0.2.15",
"@langchain/community": "^0.3.4",
"@langchain/core": "^0.2.9",
"@langchain/mistralai": "^0.0.28",
"@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",
"langsmith": "^0.1.41",
"nanoid": "^5.0.7",
"pdf-parse": "^1.1.1",
"unstructured-client": "^0.15.1"
},
"peerDependencies": {
"@langchain/openai": "^0.2.8",
"@upstash/ratelimit": "^1 || ^2",
"@upstash/redis": "^1.34.0",
"@upstash/vector": "^1.1.5",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
}
}