-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.28 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
{
"name": "web",
"version": "0.0.1",
"dependencies": {
"@elysiajs/cors": "^1.0.2",
"@elysiajs/eden": "^1.0.13",
"@elysiajs/stream": "^1.0.2",
"@elysiajs/swagger": "^1.0.5",
"@langchain/community": "^0.2.1",
"@langchain/core": "^0.2.0",
"@langchain/qdrant": "^0.0.4",
"@qdrant/js-client-rest": "^1.9.0",
"bits-ui": "^0.21.7",
"clsx": "^2.1.1",
"cmdk-sv": "^0.0.17",
"elysia": "1",
"langchain": "^0.2.1",
"marked": "^12.0.2",
"mode-watcher": "^0.3.0",
"ollama": "^0.5.0",
"pdf-parse": "^1.1.1",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1"
},
"overrides": {
"@langchain/core": "0.2.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/bun": "1",
"autoprefixer": "^10.4.16",
"lucide-svelte": "^0.378.0",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.1",
"svelte": "^5.0.0-next.1",
"svelte-adapter-bun": "^0.5.2",
"svelte-check": "^3.6.0",
"tailwindcss": "^3.4.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"private": true,
"scripts": {
"dev": "bun --bun run vite dev",
"build": "bun --bun run vite build",
"preview": "bun --bun run vite preview",
"check": "bun --bun run svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "bun --bun run svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "bun --bun run prettier --check .",
"format": "bun --bun run prettier --write .",
"qdrant": "docker run --rm -d --name rag-qdrant -p 6333:6333 -p 6334:6334 -v $(pwd)/qdrant_storage:/qdrant/storage qdrant/qdrant",
"qdrant:ui": "xdg-open http://localhost:6333/dashboard",
"docker:build": "docker build --pull --rm -f Dockerfile -t ghcr.io/eliottwantz/ownllama:latest --label 'org.opencontainers.image.source=https://github.com/eliottwantz/OwnLlama' --label 'org.opencontainers.image.description=Local LLM helper using Ollama for simple prompts, web searches and asking question on your own pdfs' ."
},
"type": "module"
}