- Tauri v2 desktop app with React, TypeScript, Tailwind CSS v4 - Contenteditable editor with [[wikilink]] token chips (compact pills, unwrap on backspace/delete) - Wikilink autocomplete: type [[ to search and link notes - Force-directed graph view with semantic zoom (circle→card morph) - Single-click zooms into node, double-click opens note - shadcn-inspired design system: zinc neutrals, purple accents, gradient buttons - Sidebar with search, file tree, active indicators, daily note shortcut - Backlinks panel showing linked mentions with context - File-based vault stored in local filesystem via Tauri FS plugin
32 lines
No EOL
764 B
JSON
32 lines
No EOL
764 B
JSON
{
|
|
"name": "graph-notes",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-router-dom": "^7.6.0",
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/plugin-opener": "^2",
|
|
"@tauri-apps/plugin-fs": "^2",
|
|
"@tauri-apps/plugin-dialog": "^2",
|
|
"marked": "^15.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.1.8",
|
|
"@types/react-dom": "^19.1.6",
|
|
"@vitejs/plugin-react": "^4.6.0",
|
|
"@tailwindcss/vite": "^4.2.1",
|
|
"tailwindcss": "^4.2.1",
|
|
"typescript": "~5.8.3",
|
|
"vite": "^7.0.4",
|
|
"@tauri-apps/cli": "^2"
|
|
}
|
|
} |