forked from NullStarrySky/Pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.1 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.1 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
99
100
101
{
"name": "pulsar",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"sidecar:build": "bun build ./src-sidecar/index.ts --compile --outfile ./src-tauri/binaries/app && bun ./scripts/rename-sidecar.mjs",
"tauri:dev": "bun run tauri dev",
"tauri:build": "bun run tauri build"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.33",
"@ai-sdk/azure": "^2.0.53",
"@ai-sdk/deepseek": "^1.0.28",
"@ai-sdk/google": "^2.0.32",
"@ai-sdk/google-vertex": "^3.0.49",
"@ai-sdk/mcp": "^0.0.8",
"@ai-sdk/openai": "^2.0.67",
"@ai-sdk/xai": "^2.0.26",
"@mendable/firecrawl-js": "^4.6.1",
"@modelcontextprotocol/sdk": "^1.20.2",
"@sipec/vue3-tags-input": "^3.0.4",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/vue-table": "^8.21.3",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "~2",
"@tauri-apps/plugin-clipboard-manager": "~2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-http": "~2",
"@tauri-apps/plugin-notification": "~2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-os": "~2",
"@tauri-apps/plugin-positioner": "~2",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-shell": "~2",
"@tauri-apps/plugin-sql": "^2.3.1",
"@tauri-apps/plugin-store": "~2",
"@tauri-apps/plugin-upload": "~2",
"@tauri-apps/plugin-websocket": "~2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/express-ws": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/png-chunk-text": "^1.0.3",
"@types/png-chunks-encode": "^1.0.2",
"@types/png-chunks-extract": "^1.0.2",
"@types/ws": "^8.18.1",
"@vueuse/core": "^14.0.0",
"add": "^2.0.6",
"ai": "^5.0.104",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dayjs": "^1.11.19",
"exa-js": "^2.0.6",
"express": "^5.1.0",
"express-ws": "^5.0.2",
"katex": "^0.16.25",
"lodash-es": "^4.17.21",
"lucide-vue-next": "^0.553.0",
"markstream-vue": "^0.0.2-beta.6",
"mermaid": "^11.12.1",
"monaco-editor": "^0.54.0",
"msw": "^2.12.3",
"node-fetch": "^3.3.2",
"notivue": "^2.4.5",
"pinia": "^3.0.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"png-chunk-text": "^1.0.0",
"png-chunks-encode": "^1.0.0",
"png-chunks-extract": "^1.0.0",
"reka-ui": "^2.6.0",
"shiki": "^3.17.0",
"stream-markdown": "^0.0.10",
"stream-monaco": "^0.0.7",
"streamdown-vue": "^1.0.25",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"url-join": "^5.0.0",
"vitest": "^4.0.14",
"vue": "^3.5.13",
"vue3-sfc-loader": "^0.9.5",
"vuedraggable": "^4.1.0",
"ws": "^8.18.3",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^5.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "~5.6.2",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-vue-devtools": "^8.0.3",
"vue-tsc": "^2.1.10"
}
}