-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.56 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.56 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
109
110
111
112
113
{
"name": "ghostie",
"private": true,
"version": "0.1.80",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"build:tauri": "npm run build && tauri build",
"test": "jest",
"test:watch": "jest --watch",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.3",
"@codemirror/view": "^6.36.5",
"@hookform/resolvers": "^4.1.3",
"@lezer/highlight": "^1.2.1",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-context-menu": "^2.2.6",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@supabase/supabase-js": "^2.49.4",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-autostart": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.1",
"@tauri-apps/plugin-opener": "^2.2.6",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.7.0",
"@uiw/codemirror-theme-github": "^4.23.8",
"@uiw/react-codemirror": "^4.23.8",
"axios": "^1.7.9",
"boring-avatars": "^1.11.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"cron-parser": "^5.0.4",
"croner": "^9.0.0",
"date-fns": "^4.1.0",
"echo-state": "^1.3.36",
"framer-motion": "^11.15.0",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"lucide-react": "^0.469.0",
"mobx": "^6.13.7",
"mobx-persist-store": "^1.1.8",
"mobx-persist-store-idb-adapter": "^1.2.0-alpha",
"mobx-react-lite": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.5",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-markdown": "^9.0.3",
"react-syntax-highlighter": "^15.6.1",
"reactflow": "^11.11.4",
"remark-gfm": "^4.0.1",
"slate": "^0.112.0",
"slate-history": "^0.110.3",
"slate-react": "^0.112.1",
"sonner": "^2.0.1",
"tailwind-merge": "^2.6.0",
"tickie": "^1.1.3",
"typescript": "^5.2.2",
"uuid": "^11.1.0",
"vaul": "^1.1.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.1",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.2.5",
"vite": "^5.3.1",
"vitepress": "^1.6.3"
}
}