forked from chardoncs/ollama-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 KB
/
package.json
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
{
"name": "ollama-lab",
"version": "0.4.0-dev.0",
"description": "Ollama client",
"private": true,
"type": "module",
"engines": {
"bun": ">=1.2"
},
"scripts": {
"dev": "vite dev",
"build": "tsc -b && vite build",
"preview": "vite preview",
"fmt": "prettier . --write",
"lint": "eslint",
"tauri": "tauri",
"update-all": "bun update && bun install && cargo update"
},
"license": "MIT",
"dependencies": {
"@corvu/resizable": "^0.2.4",
"@fontsource-variable/inter": "^5.2.5",
"@kobalte/core": "^0.13.9",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.3",
"@tauri-apps/api": "^2.3.0",
"@tauri-apps/cli": "^2.3.1",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-http": "^2.3.0",
"@tauri-apps/plugin-opener": "^2.2.6",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-process": "^2.2.0",
"autosize": "^6.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk-solid": "^1.1.2",
"convert": "^5.8.0",
"dayjs": "^1.11.13",
"hastscript": "^9.0.1",
"highlight.js": "^11.11.1",
"lowlight": "^3.3.0",
"lucide-solid": "latest",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"solid-js": "^1.9.5",
"solid-markdown": "^2.0.14",
"solid-motionone": "^1.0.3",
"solid-sonner": "^0.2.8",
"tailwind-merge": "^3.0.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.22.0",
"@tailwindcss/postcss": "^4.0.12",
"@types/autosize": "^4.0.3",
"@types/bun": "^1.2.4",
"@types/hast": "^3.0.4",
"@typescript-eslint/parser": "^8.26.0",
"autoprefixer": "^10.4.20",
"change-case": "^5.4.4",
"eslint": "^9.22.0",
"eslint-plugin-solid": "^0.14.5",
"magic-string": "^0.30.17",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.12",
"tailwindcss-animate": "^1.0.7",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.1",
"vite-plugin-solid": "^2.11.6"
}
}