| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "name": "SmartChat",
- "version": "1.0.0",
- "main": "electron.main.js",
- "keywords": [],
- "author": "",
- "license": "ISC",
- "description": "Smart Chat App",
- "scripts": {
- "dev": "cross-env NODE_ENV=development vite",
- "electron:serve": "cross-env NODE_ENV=development concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
- "build": "cross-env NODE_ENV=production vite build",
- "electron:build": "cross-env NODE_ENV=production vite build && electron-builder",
- "doc": "vitepress dev docs --port 5174 --host",
- "doc-build": "vitepress build docs"
- },
- "devDependencies": {
- "@vitejs/plugin-vue": "5.2.1",
- "concurrently": "8.2.1",
- "cross-env": "7.0.3",
- "electron": "25.3.1",
- "electron-builder": "23.6.0",
- "eslint": "9.16.0",
- "eslint-plugin-vue": "9.32.0",
- "vite": "5.4.11",
- "vitepress": "1.5.0",
- "wait-on": "7.0.1"
- },
- "dependencies": {
- "@arco-design/web-vue": "2.56.3",
- "@microsoft/fetch-event-source": "2.0.1",
- "@wangeditor/editor": "^5.1.23",
- "@wangeditor/editor-for-vue": "^5.1.12",
- "axios": "1.7.8",
- "clipboard": "2.0.11",
- "dayjs": "1.11.13",
- "docx-preview": "0.3.3",
- "echarts": "^5.6.0",
- "electron-store": "^8.2.0",
- "file-saver": "^2.0.5",
- "filesize": "10.1.6",
- "highlight.js": "11.10.0",
- "html-docx-js-typescript": "^0.1.5",
- "js-cookie": "3.0.5",
- "jsencrypt": "^3.3.1",
- "katex": "^0.16.22",
- "marked": "13.0.0",
- "md5": "2.3.0",
- "mitt": "3.0.1",
- "pinia": "2.2.8",
- "postcss-pxtorem": "^6.1.0",
- "screenfull": "6.0.2",
- "vue": "3.5.13",
- "vue-i18n": "10.0.5",
- "vue-router": "4.5.0",
- "wujie-vue3": "1.0.23"
- },
- "build": {
- "appId": "com.example.damoxing_desk",
- "productName": "智库问答助手",
- "directories": {
- "output": "dist_electron"
- },
- "icon": "tray-icon.png",
- "files": [
- "dist/**/*",
- "electron.main.js",
- "preload.js",
- "public/logo.png"
- ],
- "extraResources": [
- {
- "from": "tray-icon.png",
- "to": "tray-icon.png"
- }
- ],
- "nsis": {
- "oneClick": false,
- "allowToChangeInstallationDirectory": true,
- "createDesktopShortcut": true,
- "createStartMenuShortcut": true,
- "shortcutName": "智库问答助手"
- }
- }
- }
|