Pablan, as it stands

Self-hosted knowledge management for SMEs: a split-screen Markdown editor
whose sections an LLM refines while you write, and RAG question answering
over the documents that result. FastAPI + Postgres/pgvector on the back,
SvelteKit on the front, everything OpenAI-compatible and self-hostable.

Squashed into a single commit; the development history stays local.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CA43ZJda8Rbp2hKXNy8f6b
This commit is contained in:
ProfessorNova
2026-09-04 09:21:37 +02:00
co-authored by Claude Opus 5
parent 68d3a43191
commit 784b76baf7
346 changed files with 43430 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
{
"name": "frontend",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "npm run messages && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "npm run messages && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "npm run messages && npm run lint:files",
"lint:files": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:e2e": "playwright install chromium && playwright test",
"test": "npm run test:e2e",
"messages": "paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide --strategy custom-userPreference cookie preferredLanguage baseLocale"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@inlang/paraglide-js": "^2.22.0",
"@playwright/test": "^1.60.0",
"@sveltejs/adapter-node": "^5.5.7",
"@sveltejs/kit": "^2.63.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^24",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.19.0",
"globals": "^17.6.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"svelte": "^5.56.1",
"svelte-check": "^4.6.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vite": "^8.0.16"
},
"dependencies": {
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-markdown": "^6.5.1",
"@codemirror/language": "^6.12.4",
"@codemirror/merge": "^6.12.2",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.6",
"@internationalized/date": "^3.12.2",
"@lucide/svelte": "^1.25.0",
"bits-ui": "^2.18.1",
"dompurify": "^3.4.12",
"katex": "^0.18.1",
"marked": "^18.0.6",
"marked-katex-extension": "^5.1.10",
"openapi-fetch": "^0.17.0"
}
}