加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
package.json 2.04 KB
一键复制 编辑 原始数据 按行查看 历史
lantianyu 提交于 2023-12-06 16:46 . update
{
"name": "chat_desktop",
"private": true,
"version": "0.0.0",
"main": "dist-electron/index.js",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"dist": "vite build && electron-builder"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@vueuse/core": "^10.6.1",
"axios": "^1.4.0",
"element-plus": "^2.3.8",
"md-editor-v3": "^4.8.1",
"mitt": "^3.0.1",
"pinia": "^2.1.4",
"query-string": "^8.1.0",
"socket.io-client": "^4.7.2",
"spark-md5": "^3.0.2",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vue3-video-play": "^1.3.1-beta.6"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@vitejs/plugin-vue": "^4.2.3",
"electron": "^25.3.0",
"electron-builder": "^24.4.0",
"electron-devtools-installer": "^3.2.0",
"sass": "^1.63.6",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.4.0",
"vite-plugin-electron": "^0.12.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vue-tsc": "^1.8.3"
},
"build": {
"productName": "歪fChat",
"directories": {
"output": "dist"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "xxxx"
},
"dmg": {
"contents": [
{
"x": 380,
"y": 180,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 180,
"type": "file"
}
],
"window": {
"x": 100,
"y": 100,
"width": 500,
"height": 300
}
},
"mac": {
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"zip"
]
},
"files": [
"dist-electron/**/*",
"public/**/*",
"src/assets/**/*"
],
"extends": null
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化