-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 940 Bytes
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
{
"name": "qdrant-chrome-plugin",
"version": "0.2.0",
"description": "A Chrome extension for monitoring and managing Qdrant vector database clusters. Connect to one or more Qdrant instances and get real-time visibility into cluster health, collection configurations, shard distribution, and performance insights.",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"update-versions": "node scripts/update-qdrant-versions.mjs"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"umap-js": "^1.4.0"
},
"devDependencies": {
"@types/chrome": "^0.1.38",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vite-plugin-static-copy": "^3.4.0"
}
}