2026-02-14 18:20:07 +01:00
|
|
|
{
|
|
|
|
|
"name": "laputa-app",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
|
|
|
|
"build": "tsc -b && vite build",
|
2026-03-02 23:31:04 +01:00
|
|
|
"bundle-mcp": "node scripts/bundle-mcp-server.mjs",
|
2026-02-14 18:20:07 +01:00
|
|
|
"lint": "eslint .",
|
|
|
|
|
"preview": "vite preview",
|
|
|
|
|
"tauri": "tauri",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest",
|
2026-02-17 13:10:43 +01:00
|
|
|
"test:e2e": "playwright test",
|
2026-02-23 22:33:11 +01:00
|
|
|
"test:coverage": "vitest run --coverage",
|
|
|
|
|
"prepare": "husky"
|
2026-02-14 18:20:07 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-02-20 22:52:56 +01:00
|
|
|
"@anthropic-ai/sdk": "^0.78.0",
|
2026-02-15 19:14:55 +01:00
|
|
|
"@blocknote/core": "^0.46.2",
|
|
|
|
|
"@blocknote/mantine": "^0.46.2",
|
|
|
|
|
"@blocknote/react": "^0.46.2",
|
2026-02-21 17:27:19 +01:00
|
|
|
"@dnd-kit/core": "^6.3.1",
|
|
|
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
|
|
|
"@dnd-kit/utilities": "^3.2.2",
|
2026-02-15 19:14:55 +01:00
|
|
|
"@mantine/core": "^8.3.14",
|
2026-02-17 11:03:23 +01:00
|
|
|
"@phosphor-icons/react": "^2.1.10",
|
2026-02-16 16:56:44 +01:00
|
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
|
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
|
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
|
|
|
"@radix-ui/react-separator": "^1.1.8",
|
|
|
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
|
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
|
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
|
|
|
"@tailwindcss/vite": "^4.1.18",
|
2026-02-14 18:20:07 +01:00
|
|
|
"@tauri-apps/api": "^2.10.1",
|
2026-02-23 14:42:39 +01:00
|
|
|
"@tauri-apps/plugin-dialog": "^2.6.0",
|
2026-02-24 22:20:33 +01:00
|
|
|
"@tauri-apps/plugin-opener": "^2.5.3",
|
2026-02-22 12:10:24 +01:00
|
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
|
|
|
"@tauri-apps/plugin-updater": "^2.10.0",
|
2026-02-16 16:56:44 +01:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2026-02-26 19:17:40 +01:00
|
|
|
"date-fns": "^4.1.0",
|
2026-02-15 18:40:33 +01:00
|
|
|
"katex": "^0.16.28",
|
|
|
|
|
"lowlight": "^3.3.0",
|
2026-02-16 16:56:44 +01:00
|
|
|
"lucide-react": "^0.564.0",
|
|
|
|
|
"radix-ui": "^1.4.3",
|
2026-02-14 18:20:07 +01:00
|
|
|
"react": "^19.2.0",
|
2026-02-26 19:17:40 +01:00
|
|
|
"react-day-picker": "^9.13.2",
|
2026-02-16 16:56:44 +01:00
|
|
|
"react-dom": "^19.2.0",
|
2026-02-17 17:14:36 +01:00
|
|
|
"react-virtuoso": "^4.18.1",
|
2026-02-16 16:56:44 +01:00
|
|
|
"tailwind-merge": "^3.4.1",
|
|
|
|
|
"tailwindcss": "^4.1.18",
|
|
|
|
|
"tw-animate-css": "^1.4.0"
|
2026-02-14 18:20:07 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@eslint/js": "^9.39.1",
|
|
|
|
|
"@playwright/test": "^1.58.2",
|
|
|
|
|
"@tauri-apps/cli": "^2.10.0",
|
|
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
|
|
|
"@testing-library/react": "^16.3.2",
|
|
|
|
|
"@types/node": "^24.10.1",
|
|
|
|
|
"@types/react": "^19.2.7",
|
|
|
|
|
"@types/react-dom": "^19.2.3",
|
|
|
|
|
"@vitejs/plugin-react": "^5.1.1",
|
2026-02-17 13:10:43 +01:00
|
|
|
"@vitest/coverage-v8": "^4.0.18",
|
2026-03-02 23:31:04 +01:00
|
|
|
"esbuild": "^0.27.3",
|
2026-02-14 18:20:07 +01:00
|
|
|
"eslint": "^9.39.1",
|
|
|
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
|
|
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
|
|
|
"globals": "^16.5.0",
|
2026-02-20 10:39:45 +01:00
|
|
|
"gray-matter": "^4.0.3",
|
2026-02-23 22:33:11 +01:00
|
|
|
"husky": "^9.1.7",
|
2026-02-14 18:20:07 +01:00
|
|
|
"jsdom": "^28.0.0",
|
|
|
|
|
"typescript": "~5.9.3",
|
|
|
|
|
"typescript-eslint": "^8.48.0",
|
|
|
|
|
"vite": "^7.3.1",
|
|
|
|
|
"vitest": "^4.0.18"
|
|
|
|
|
}
|
|
|
|
|
}
|