-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.5 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
{
"name": "aqbot",
"private": true,
"version": "0.0.76",
"license": "AGPL-3.0-only",
"packageManager": "pnpm@10.32.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "node scripts/tauri-cli.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"bump": "node scripts/bump-version.mjs"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@ant-design/x": "^2.4.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lobehub/icons": "^5.0.1",
"@tanstack/react-virtual": "^3.13.23",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.8",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.0",
"@terrastruct/d2": "^0.1.33",
"antd": "^6.3.3",
"antd-style": "^4.1.0",
"clsx": "^2.1.1",
"emoji-picker-element": "^1.29.1",
"html2canvas": "^1.4.1",
"i18next": "^25.9.0",
"i18next-browser-languagedetector": "^8.2.1",
"katex": "^0.16.40",
"lucide-react": "^0.577.0",
"markstream-react": "link:./libs/markstream-vue/packages/markstream-react",
"overlayscrollbars": "^2.14.0",
"overlayscrollbars-react": "^0.5.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.8",
"stream-markdown": "^0.0.15",
"stream-markdown-parser": "link:./libs/markstream-vue/packages/markdown-parser",
"stream-monaco": "link:./libs/stream-monaco",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.27",
"jsdom": "^29.0.1",
"tailwindcss": "^4.2.2",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vite-plugin-monaco-editor": "^1.1.0",
"vitest": "^4.1.0"
},
"pnpm": {
"overrides": {
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4"
}
}
}