-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
40
41
42
43
44
45
46
47
48
{
"name": "openclaw-chat-api",
"version": "1.0.0",
"private": true,
"description": "RAG-based docs chat API for OpenClaw documentation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OpenKnot/openclaw-chat-api.git"
},
"bugs": {
"url": "https://github.com/OpenKnot/openclaw-chat-api/issues"
},
"scripts": {
"bdev": "next build && next dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:index": "bun scripts/build-vector-index.ts",
"deploy": "vercel"
},
"dependencies": {
"@create-markdown/core": "^2.0.0",
"@create-markdown/react": "^2.0.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@upstash/vector": "^1.2.3",
"@vercel/analytics": "^1.6.1",
"next": "^16.2.1",
"openai": "^6.32.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"overrides": {
"@create-markdown/core": "^2.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/node": "^22.19.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^5.9.3"
},
"patchedDependencies": {
"@create-markdown/react@0.1.0": "patches/@create-markdown%2Freact@0.1.0.patch"
}
}