-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
84 lines (84 loc) · 2.61 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "hollama",
"version": "0.0.0-dev",
"private": true,
"homepage": "https://hollama.fernando.is",
"description": "A minimal UI for talking to Ollama servers",
"scripts": {
"dev": "concurrently \"typesafe-i18n\" \"vite dev --host\"",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test --trace on --ignore-snapshots ",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"electron": "electron .",
"electron:build": "cross-env PUBLIC_ADAPTER=electron-node vite build && electron-builder",
"typesafe-i18n": "typesafe-i18n"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@playwright/test": "^1.43.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-cloudflare": "^4.7.4",
"@sveltejs/adapter-node": "^5.2.9",
"@sveltejs/kit": "^2.8.1",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@types/eslint": "^8.56.0",
"@types/markdown-it": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"autoprefixer": "^10.4.16",
"bits-ui": "^0.21.13",
"codemirror": "^6.0.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"electron": "^31.3.1",
"electron-builder": "^25.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"highlight.js": "^11.9.0",
"lucide-svelte": "^0.372.0",
"markdown-it": "^14.1.0",
"ollama": "^0.5.9",
"openai": "^4.66.1",
"postcss": "^8.4.32",
"postcss-import": "^16.1.0",
"postcss-load-config": "^5.0.2",
"postcss-nested": "^6.2.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.5.9",
"semver": "^7.6.3",
"svelte": "^5.2.2",
"svelte-check": "^4.0.0",
"svelte-sonner": "^0.3.27",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.3.6",
"thememirror": "^2.0.1",
"tslib": "^2.4.1",
"typesafe-i18n": "^5.26.2",
"typescript": "^5.5.0",
"vite": "^5.4.4",
"vite-node": "^2.0.5"
},
"optionalDependencies": {
"@cloudflare/workerd-linux-64": "^1.20240909.0",
"@esbuild/darwin-x64": "^0.24.0",
"@esbuild/win32-x64": "^0.24.0",
"@rollup/rollup-linux-x64-gnu": "^4.21.3",
"@sveltejs/adapter-cloudflare": "^4.2.1"
},
"type": "module",
"author": {
"name": "Fernando Maclen",
"email": "[email protected]",
"url": "https://fernando.is"
},
"main": "./electron/main.js"
}