package.json
3.69 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
{
"name": "linkmed-vue3",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build",
"type-check": "vue-tsc --noEmit",
"preview": "vite preview",
"lint": "eslint src --ext .vue,.ts,.tsx --fix",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@blocksuite/affine": "0.22.4",
"@blocksuite/affine-model": "0.22.4",
"@blocksuite/icons": "2.2.17",
"@blocksuite/store": "0.22.4",
"lit": "3.3.2",
"@element-plus/icons-vue": "^2.3.0",
"@fortawesome/fontawesome-free": "^7.1.0",
"@tdesign-vue-next/chat": "0.5.0-alpha.6",
"@types/dompurify": "^3.0.5",
"@types/markdown-it": "^14.1.2",
"@umoteam/editor": "^8.1.0",
"@univerjs/core": "^0.15.0",
"@univerjs/design": "^0.15.0",
"@univerjs/engine-formula": "^0.15.0",
"@univerjs/engine-render": "^0.15.0",
"@univerjs/sheets": "^0.15.0",
"@univerjs/sheets-formula": "^0.15.0",
"@univerjs/sheets-ui": "^0.15.0",
"@univerjs/ui": "^0.15.0",
"@vanilla-extract/css": "^1.18.0",
"@volcengine/tos-sdk": "^2.9.0",
"@vue-office/pptx": "^1.0.1",
"@vueup/vue-quill": "^1.2.0",
"axios": "^1.12.2",
"cherry-markdown": "^0.10.2",
"cronstrue": "^3.9.0",
"dayjs": "^1.11.13",
"docx": "^9.5.1",
"dompurify": "^3.2.7",
"element-plus": "^2.6.0",
"file-saver": "^2.0.5",
"highlight.js": "^11.11.1",
"katex": "^0.16.25",
"mammoth": "^1.11.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-footnote": "^4.0.0",
"markdown-it-image-figures": "^2.1.1",
"markdown-it-mark": "^4.0.0",
"markdown-it-mermaid-plus": "^0.2.5",
"markdown-it-multimd-table": "^4.2.3",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-texmath": "^1.0.0",
"mermaid": "^11.12.2",
"number-precision": "^1.6.0",
"pdfjs-dist": "2.16.105",
"pinia": "^2.1.0",
"quill": "^2.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rxjs": "^7.8.2",
"vditor": "^3.11.2",
"vue": "^3.5.22",
"vue-demi": "^0.14.6",
"vue-i18n": "^9.10.0",
"vue-router": "^4.3.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@pinia/testing": "^0.1.7",
"@playwright/test": "^1.58.2",
"@rollup/plugin-replace": "^6.0.0",
"@types/node": "^24.6.0",
"@vanilla-extract/esbuild-plugin": "^2.3.21",
"@vanilla-extract/vite-plugin": "^5.1.4",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cross-env": "^10.1.0",
"esbuild": "^0.27.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.20.0",
"jsdom": "^29.0.0",
"prettier": "^3.2.0",
"rollup-plugin-visualizer": "^6.0.5",
"sass": "^1.70.0",
"terser": "^5.44.1",
"typescript": "~5.9.3",
"unplugin-auto-import": "^20.2.0",
"unplugin-vue-components": "^0.26.0",
"vite": "^6.0.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.1.0",
"vue-tsc": "^3.1.0"
},
"overrides": {
"vite": "^6.0.0",
"rxjs": "^7.8.2",
"@univerjs/core": "^0.15.0",
"@univerjs/design": "^0.15.0",
"@univerjs/engine-formula": "^0.15.0",
"@univerjs/engine-render": "^0.15.0",
"@univerjs/sheets": "^0.15.0",
"@univerjs/sheets-formula": "^0.15.0",
"@univerjs/sheets-ui": "^0.15.0",
"@univerjs/ui": "^0.15.0"
}
}