-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.62 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 4.62 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "synclan",
"version": "0.1.3",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "cross-env RUST_BACKTRACE=full tauri dev",
"build": "tauri build",
"build:verbose": "tauri build --verbose",
"tauri": "tauri",
"app:dev": "pnpm web:build && pnpm ui:dev",
"app:build": "pnpm web:build && pnpm ui:build",
"app:preview": "pnpm web:preview && pnpm ui:preview",
"ui:dev": "vite --config vite.config.main.ts",
"ui:build": "tsc && vite build --config vite.config.main.ts",
"ui:preview": "vite preview --config vite.config.main.ts",
"web:dev": "vite --config vite.config.web.ts",
"web:build": "tsc && vite build --config vite.config.web.ts",
"web:preview": "vite preview --config vite.config.web.ts",
"updater": "node scripts/updater.mjs",
"updater-fixed-webview2": "node scripts/updater-fixed-webview2.mjs",
"set-updater-channel": "node scripts/set-updater-channel.mjs",
"test": "vitest",
"coverage": "vitest run --coverage",
"oxlint": "oxlint src scripts --type-aware",
"oxlint:fix": "oxlint src scripts --fix",
"format:check": "oxfmt --check src",
"format:write": "oxfmt --write src",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^5.2.0",
"@floating-ui/react": "^0.27.20",
"@fontsource-variable/inter": "^5.3.0",
"@hookform/resolvers": "^5.9.1",
"@lexical/clipboard": "^0.50.0",
"@lexical/code-core": "^0.50.0",
"@lexical/code-shiki": "^0.50.0",
"@lexical/extension": "^0.50.0",
"@lexical/history": "^0.50.0",
"@lexical/html": "^0.50.0",
"@lexical/link": "^0.50.0",
"@lexical/list": "^0.50.0",
"@lexical/markdown": "^0.50.0",
"@lexical/react": "^0.50.0",
"@lexical/rich-text": "^0.50.0",
"@lexical/selection": "^0.50.0",
"@lexical/utils": "^0.50.0",
"@lottiefiles/dotlottie-react": "^0.19.16",
"@lottiefiles/dotlottie-web": "^0.80.0",
"@shadcn/react": "^0.3.1",
"@sindresorhus/is": "^8.1.0",
"@tanstack/react-query": "^5.102.8",
"@tanstack/react-virtual": "^3.14.10",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.3",
"@tauri-apps/plugin-fs": "^2.5.2",
"@tauri-apps/plugin-notification": "^2.4.0",
"@tauri-apps/plugin-opener": "^2.5.5",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"data-uri-to-buffer": "^8.0.0",
"dayjs": "^1.11.23",
"dexie": "^4.4.5",
"embla-carousel-react": "^8.6.0",
"emoji-datasource-apple": "^16.0.0",
"fuse.js": "^7.5.0",
"i18next": "^26.4.1",
"immer": "^11.1.18",
"lexical": "^0.50.0",
"lodash-es": "^4.18.1",
"lucide-react": "^1.39.0",
"motion": "^13.2.0",
"next-themes": "^0.4.6",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.6.7",
"react": "^19.2.8",
"react-aria": "^3.52.0",
"react-dom": "^19.2.8",
"react-dropzone": "^20.1.1",
"react-error-boundary": "^6.1.4",
"react-hook-form": "^7.87.0",
"react-i18next": "^17.0.13",
"react-intersection-observer": "^11.0.1",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.12.3",
"react-router": "^8.3.1",
"react-use": "^17.6.1",
"shadcn": "^4.20.1",
"socket.io-client": "^4.8.3",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0",
"uuid": "^14.0.2",
"yet-another-react-lightbox": "^3.32.2",
"zod": "^4.5.4",
"zod-validation-error": "^5.0.0",
"zustand": "^5.0.15"
},
"devDependencies": {
"@actions/github": "^9.1.1",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@faker-js/faker": "^10.6.0",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@tauri-apps/cli": "^2",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^26.4.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/browser-playwright": "^5.0.0",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"fs-extra": "^11.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"oxfmt": "^0.67.0",
"oxlint": "^1.81.0",
"oxlint-tsgolint": "^7.0.2001",
"playwright": "^1.62.1",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vite-plugin-html": "^3.2.2",
"vite-plugin-static-copy": "^4.1.1",
"vitest": "^5.0.0"
},
"packageManager": "pnpm@11.25.0"
}