-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.34 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
{
"name": "workshadow",
"private": true,
"version": "0.1.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"tauri": "tauri",
"icons:sync": "node scripts/sync-desktop-icons.mjs && npm run icons:installer",
"icons:installer": "powershell -ExecutionPolicy Bypass -File scripts/generate-nsis-installer-assets.ps1",
"bundler-tools:setup": "powershell -ExecutionPolicy Bypass -File scripts/setup-tauri-bundler-tools.ps1"
},
"dependencies": {
"@flowrag/core": "^1.8.1",
"@flowrag/pipeline": "^1.9.2",
"@flowrag/provider-openai": "^0.3.5",
"@flowrag/storage-lancedb": "^1.1.6",
"@lancedb/lancedb": "^0.27.2",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
"@tiptap/extension-highlight": "^3.23.1",
"@tiptap/extension-image": "^3.11.1",
"@tiptap/extension-link": "^3.11.1",
"@tiptap/extension-list": "^3.23.1",
"@tiptap/extension-mathematics": "^3.23.1",
"@tiptap/extension-placeholder": "^3.11.1",
"@tiptap/extension-subscript": "^3.23.1",
"@tiptap/extension-superscript": "^3.23.1",
"@tiptap/extension-table": "^3.23.1",
"@tiptap/extension-table-cell": "^3.23.1",
"@tiptap/extension-table-header": "^3.23.1",
"@tiptap/extension-table-row": "^3.23.1",
"@tiptap/extension-task-item": "^3.23.1",
"@tiptap/extension-task-list": "^3.23.1",
"@tiptap/extension-text-align": "^3.23.1",
"@tiptap/extension-text-style": "^3.23.1",
"@tiptap/extension-underline": "^3.23.1",
"@tiptap/markdown": "^3.23.1",
"@tiptap/react": "^3.11.1",
"@tiptap/starter-kit": "^3.11.1",
"i18next": "^25.6.3",
"katex": "^0.16.45",
"lucide-react": "^0.555.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.3.5",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"grpc-tools": "^1.13.1",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^3.2.4"
}
}