-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.5 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.5 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "echo-app",
"private": true,
"version": "0.3.3",
"workspaces": [
"apps/*"
],
"packageManager": "bun@1.3.5",
"type": "module",
"scripts": {
"dev": "vite",
"dev:web": "turbo run dev --filter=apps/web",
"build": "vite build",
"build:web": "turbo run build --filter=apps/web",
"check-types": "tsc --noEmit",
"pipeline": "bun run check-types && bun run build",
"ci:local": "bun run pipeline && cd src-tauri && cargo check",
"preview": "vite preview",
"tauri": "tauri",
"prepare": "husky",
"version": "bun ./scripts/bump-version.ts",
"clean": "rm -rf .turbo .cargo node_modules bun.lock dist src-tauri/target apps/web/node_modules && bun install"
},
"dependencies": {
"@ariakit/react": "^0.4.20",
"@base-ui/react": "^1.2.0",
"@floating-ui/react": "^0.27.16",
"@platejs/ai": "^52.0.16",
"@platejs/autoformat": "^52.0.11",
"@platejs/basic-nodes": "^52.0.11",
"@platejs/callout": "^52.0.11",
"@platejs/code-block": "^52.0.11",
"@platejs/combobox": "^52.0.15",
"@platejs/date": "^52.0.11",
"@platejs/excalidraw": "^52.0.11",
"@platejs/indent": "^52.0.11",
"@platejs/layout": "^52.0.11",
"@platejs/link": "^52.0.11",
"@platejs/list-classic": "^52.0.11",
"@platejs/markdown": "^52.0.11",
"@platejs/math": "^52.0.11",
"@platejs/media": "^52.0.11",
"@platejs/mention": "^52.0.15",
"@platejs/slash-command": "^52.0.15",
"@platejs/suggestion": "^52.0.11",
"@platejs/table": "^52.0.11",
"@platejs/toc": "^52.0.11",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/api": "~2.10.1",
"@tauri-apps/plugin-autostart": "~2.5.1",
"@tauri-apps/plugin-clipboard-manager": "~2.3.2",
"@tauri-apps/plugin-fs": "~2.4.4",
"@tauri-apps/plugin-global-shortcut": "~2.3.1",
"@tauri-apps/plugin-notification": "~2.3.3",
"@tauri-apps/plugin-opener": "~2.5.2",
"@tauri-apps/plugin-os": "~2.3.2",
"@tauri-apps/plugin-process": "~2.3.1",
"@tauri-apps/plugin-store": "~2.4.1",
"@tauri-apps/plugin-updater": "~2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"country-flag-icons": "^1.6.4",
"date-fns": "^4.1.0",
"lucide-react": "^0.562.0",
"motion": "^12.26.1",
"next-themes": "^0.4.6",
"platejs": "^52.0.15",
"radix-ui": "^1.4.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hotkeys-hook": "^5.2.1",
"react-resizable-panels": "^4.6.5",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tauri-plugin-macos-permissions-api": "2.3.0",
"zod": "^3.25.76",
"zustand": "^5.0.11"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@tauri-apps/cli": "~2.10.0",
"@types/bun": "^1.3.5",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"husky": "^9.1.7",
"react-grab": "^0.0.98",
"react-scan": "^0.5.3",
"turbo": "^2.7.2",
"typescript": "~5.9.3",
"ultracite": "7.2.4",
"vite": "^7.3.0",
"vite-plugin-babel": "^1.3.2"
}
}