-
Notifications
You must be signed in to change notification settings - Fork 251
/
package.json
99 lines (99 loc) · 2.99 KB
/
package.json
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
{
"name": "LumenIM",
"private": true,
"version": "1.0.0",
"main": "electron/main.cjs",
"type": "module",
"scripts": {
"dev": "vite --mode development",
"build": "vite build",
"preview": "vite preview",
"electron": "wait-on tcp:5174 && cross-env NODE_ENV=development PROT=5174 electron .",
"electron:dev": "concurrently -k \"npm run dev\" \"npm run electron\"",
"electron:build-mac": "vite build --mode electron && electron-builder --mac",
"electron:build-win64": "vite build --mode electron && electron-builder --win --x64",
"type-check": "vue-tsc --noEmit -p tsconfig.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"@vueuse/core": "^11.0.1",
"axios": "^1.6.2",
"highlight.js": "^11.5.0",
"js-audio-recorder": "^1.0.7",
"md-editor-v3": "^4.19.2",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"quill": "^2.0.2",
"quill-mention": "^6.0.1",
"vue": "^3.5.1",
"vue-cropper": "^1.1.3",
"vue-router": "^4.4.3",
"vuedraggable": "^4.1.0",
"xgplayer": "^3.0.20"
},
"devDependencies": {
"@icon-park/vue-next": "^1.4.2",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.18.5",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"concurrently": "^7.3.0",
"cross-env": "^7.0.3",
"electron": "^19.1.9",
"electron-builder": "^23.6.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.23.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"naive-ui": "^2.39.0",
"prettier": "^3.3.2",
"typescript": "~5.2.0",
"vite": "^5.3.1",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^2.0.6",
"wait-on": "^6.0.1"
},
"build": {
"appId": "com.gzydong.lumenim",
"productName": "LumenIM",
"copyright": "Copyright © 2024 LumenIM",
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icons/lumen-im-mac.png"
},
"win": {
"icon": "build/icons/lumen-im-mac.png",
"target": [
{
"target": "nsis"
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/icons/lumen-im-win.ico",
"uninstallerIcon": "build/icons/lumen-im-win.ico",
"installerHeaderIcon": "build/icons/lumen-im-win.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "lumeim-icon"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "assets",
"output": "dist_electron"
}
}
}