-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.51 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.51 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
{
"name": "zhiqi-docs",
"version": "1.0.1",
"description": "智启文档 - AI驱动的智能文档编辑器",
"main": "electron/main.cjs",
"type": "module",
"scripts": {
"dev": "vite",
"dev:electron": "concurrently \"vite --port 3000 --strictPort\" \"wait-on http://localhost:3000 && electron .\"",
"build": "vite build",
"build:electron": "npm run build && electron-builder",
"build:electron:locked": "cross-env VITE_LOCKED_MODEL=true npm run build && electron-builder",
"preview": "vite preview",
"electron": "electron .",
"render:lab:capture": "node scripts/render-lab/capture.mjs",
"render:lab:install": "playwright install chromium"
},
"build": {
"appId": "com.zhiqidocs.app",
"productName": "智启文档",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"win": {
"target": "nsis",
"icon": "public/icon.ico",
"signAndEditExecutable": false,
"sign": "./electron/fakesign.cjs"
},
"mac": {
"target": "dmg",
"icon": "public/icon.icns"
}
},
"dependencies": {
"@brave/brave-search-mcp-server": "^2.0.62",
"@lancedb/lancedb": "^0.27.2",
"@langchain/textsplitters": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.24.0",
"@tiptap/extension-color": "^3.11.1",
"@tiptap/extension-font-family": "^3.11.1",
"@tiptap/extension-highlight": "^3.11.1",
"@tiptap/extension-image": "^3.11.1",
"@tiptap/extension-link": "^3.11.1",
"@tiptap/extension-placeholder": "^3.11.1",
"@tiptap/extension-subscript": "^3.14.0",
"@tiptap/extension-superscript": "^3.14.0",
"@tiptap/extension-table": "^3.11.1",
"@tiptap/extension-table-cell": "^3.11.1",
"@tiptap/extension-table-header": "^3.11.1",
"@tiptap/extension-table-row": "^3.11.1",
"@tiptap/extension-text-align": "^3.11.1",
"@tiptap/extension-text-style": "^3.11.1",
"@tiptap/extension-underline": "^3.11.1",
"@tiptap/pm": "^3.11.1",
"@tiptap/react": "^3.11.1",
"@tiptap/starter-kit": "^3.11.1",
"better-sqlite3": "^12.6.2",
"chart.js": "^4.5.1",
"chokidar": "^3.5.3",
"docx": "^8.5.0",
"docx-preview": "^0.3.7",
"docxtemplater": "^3.67.5",
"dotenv": "^17.2.3",
"exceljs": "^4.4.0",
"fast-xml-parser": "^5.6.0",
"file-saver": "^2.0.5",
"framer-motion": "^12.23.25",
"highlight.js": "^11.9.0",
"html2canvas": "^1.4.1",
"jszip": "^3.10.1",
"lucide-react": "^0.294.0",
"mammoth": "^1.11.0",
"p-limit": "^6.2.0",
"pdf-parse": "^2.4.5",
"pizzip": "^3.2.0",
"pptx-preview": "^1.0.7",
"pptx2html": "^0.3.4",
"pptxgenjs": "^4.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.1.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.3",
"tiptap-markdown": "^0.9.0",
"word-extractor": "^1.0.4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/file-saver": "^2.0.7",
"@types/jquery": "^3.5.33",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"concurrently": "^9.1.2",
"cross-env": "^10.1.0",
"electron": "^33.4.0",
"electron-builder": "^25.1.8",
"playwright": "^1.59.1",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"wait-on": "^8.0.3"
}
}