YAS/apps/web/package.json
YetAnotherSuite Dev 0afbae8944 feat: Phase 4 AI intelligence — writing assistant, semantic search, knowledge graph
Phase 4.1: AI Writing Assistant
- GPT-4o integration with OpenAI API (fallback to local parsing)
- Six AI actions: summarize, expand, rewrite, extract actions,
  suggest links, smart schedule
- TipTap inline AI assistant panel with streaming-ready architecture
- Apply/dismiss UI for AI suggestions
- Rewrite style selector (concise, formal, simpler, detailed)

Phase 4.2: Natural Language Input
- /api/v1/natural-language endpoint for parsing unstructured text
- AI-powered extraction of type, title, date, priority, participants
- Local regex fallback when no API key configured
- Priority parsing (!1-5) and date detection (tomorrow, next week)

Phase 4.3: Knowledge Graph
- D3.js-ready graph visualization container
- Zoom in/out/fit controls
- Placeholder state with guidance for content creation
- Data model for nodes, links, and groups

Phase 4.4: Semantic Search Infrastructure
- Unified search bar with debounced input (300ms)
- Type-based result icons (note, task, event)
- Search result display with title and content preview
- pgvector and embedding pipeline data model in schema
2026-07-20 22:22:54 +02:00

69 lines
2.1 KiB
JSON

{
"name": "@yetanother/web",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf .turbo node_modules dist"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.0",
"@yetanother/ui": "workspace:*",
"@yetanother/utils": "workspace:*",
"@yetanother/hooks": "workspace:*",
"@yetanother/types": "workspace:*",
"zustand": "^5.0.0",
"@tanstack/react-query": "^5.75.0",
"jotai": "^2.12.0",
"@tiptap/react": "^2.11.0",
"@tiptap/starter-kit": "^2.11.0",
"@tiptap/extension-placeholder": "^2.11.0",
"@tiptap/extension-code-block-lowlight": "^2.11.0",
"@tiptap/extension-image": "^2.11.0",
"@tiptap/extension-link": "^2.11.0",
"@tiptap/extension-table": "^2.11.0",
"@tiptap/extension-table-row": "^2.11.0",
"@tiptap/extension-table-cell": "^2.11.0",
"@tiptap/extension-table-header": "^2.11.0",
"@tiptap/extension-task-item": "^2.11.0",
"@tiptap/extension-task-list": "^2.11.0",
"@tiptap/extension-highlight": "^2.11.0",
"@tiptap/extension-underline": "^2.11.0",
"@tiptap/extension-text-align": "^2.11.0",
"@tiptap/pm": "^2.11.0",
"lowlight": "^3.3.0",
"lucide-react": "^0.510.0",
"@dnd-kit/core": "^6.3.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.0",
"date-fns": "^4.1.0",
"chrono-node": "^2.7.0",
"d3": "^7.9.0",
"@types/d3": "^7.4.0"
},
"devDependencies": {
"@yetanother/tsconfig": "workspace:*",
"@yetanother/eslint-config": "workspace:*",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"typescript": "^5.8.0",
"vite": "^6.3.0",
"@vitejs/plugin-react": "^4.4.0",
"vitest": "^3.1.0",
"@testing-library/react": "^16.3.0",
"@testing-library/jest-dom": "^6.6.0",
"jsdom": "^26.0.0",
"eslint": "^9.25.0",
"tailwindcss": "^4.1.0",
"@tailwindcss/vite": "^4.1.0"
}
}