-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.81 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.81 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
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
97
98
{
"name": "@sqliteai/docs-chatbot",
"description": "Documentation search chatbot powered by SQLite and AI",
"version": "0.1.3",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/sqliteai/chatbot.git"
},
"homepage": "https://github.com/sqliteai/chatbot#readme",
"bugs": {
"url": "https://github.com/sqliteai/chatbot/issues"
},
"keywords": [
"chatbot",
"documentation",
"search",
"sqlite",
"ai",
"vector-search",
"semantic-search",
"react",
"react-component"
],
"author": "SQLite Cloud",
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.cjs.js",
"module": "./dist/esm/index.esm.js",
"types": "./dist/esm/lib/DocsChatbot.d.ts",
"exports": {
".": {
"types": "./dist/esm/lib/DocsChatbot.d.ts",
"import": "./dist/esm/index.esm.js",
"require": "./dist/esm/index.cjs.js"
},
"./style.css": "./dist/esm/docs-chatbot.css"
},
"files": [
"dist"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"scripts": {
"lint": "eslint .",
"dev": "vite",
"build": "rm -rf dist && npm run build:react && npm run build:web",
"build:react": "tsc -p ./tsconfig-build.json && vite build --mode react",
"build:web": "tsc -p ./tsconfig-build.json && vite build --mode web",
"test:vanilla-js": "open examples/vanilla-js/index.html",
"test:react-app": "cd examples/react-app && (pnpm dev & sleep 1 && open http://localhost:4000)"
},
"dependencies": {
"@ai-sdk/react": "2.0.28",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"ai": "^5.0.48",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.544.0",
"nanoid": "^5.1.6",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"use-stick-to-bottom": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.13",
"@types/node": "^24.5.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"baseline-browser-mapping": "^2.9.5",
"eslint": "^9.36.0",
"eslint-plugin-react-dom": "^1.53.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-react-x": "^1.53.1",
"globals": "^16.4.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tw-animate-css": "^1.3.8",
"typescript": "~5.8.3",
"typescript-eslint": "^8.44.0",
"unplugin-dts": "1.0.0-beta.5",
"vite": "^7.2.7"
}
}