-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.25 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
{
"name": "pinecone-explorer",
"version": "0.2.0",
"description": "A desktop application for exploring and managing Pinecone vector databases",
"main": "dist-electron/main.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder --dir",
"build:release": "vite build && electron-builder",
"preview": "vite preview",
"postinstall": "electron-builder install-app-deps",
"test:build": "vite build",
"test:e2e": "pnpm test:build && playwright test",
"test:e2e:ui": "pnpm test:build && playwright test --ui",
"test:e2e:debug": "pnpm test:build && playwright test --debug",
"test:e2e:full": "pnpm test:e2e && pnpm test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest"
},
"keywords": [
"electron",
"vite",
"pinecone",
"vector-database"
],
"author": "stepandel",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.1",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^4.0.18"
},
"dependencies": {
"@aptabase/electron": "^0.3.1",
"@pinecone-database/pinecone": "^6.1.3",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-log": "^5.4.3",
"electron-store": "^11.0.2",
"electron-updater": "^6.7.3",
"lucide-react": "^0.562.0",
"openai": "^4.77.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.3.2",
"tailwind-merge": "^3.4.0"
}
}