forked from LucklySpace/Lucky-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.38 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.38 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
{
"name": "im-client",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --mode development",
"tauri build": " tauri build",
"tauri:build:debug": "tauri build --debug",
"preview": "vite preview",
"tauri": "tauri",
"tauri dev": "tauri dev",
"tauri icon": "tauri icon",
"gen:proto:ts-protos": " mkdirp ./src/proto && protoc -I ./proto --plugin=protoc-gen-ts=\"node ./node_modules/ts-proto/protoc-gen-ts_proto.js\" --ts_proto_out=./src/proto --ts_proto_opt=esModuleInterop=true,outputJsonMethods=false ./proto/*.proto google/protobuf/any.proto google/protobuf/struct.proto"
},
"dependencies": {
"@bufbuild/protobuf": "^2.8.0",
"@element-plus/icons-vue": "^2.3.1",
"@ffmpeg/core": "^0.12.10",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@jitsi/rnnoise-wasm": "^0.2.1",
"@kangc/v-md-editor": "^2.3.18",
"@tauri-apps/api": "2.5.0",
"@tauri-apps/plugin-clipboard-manager": "2.2.2",
"@tauri-apps/plugin-dialog": "2.2.2",
"@tauri-apps/plugin-fs": "2.3.0",
"@tauri-apps/plugin-global-shortcut": "2.2.1",
"@tauri-apps/plugin-http": "2.4.4",
"@tauri-apps/plugin-log": "2.5.0",
"@tauri-apps/plugin-opener": "^2.4.0",
"@tauri-apps/plugin-os": "2.2.2",
"@tauri-apps/plugin-positioner": "2.2.0",
"@tauri-apps/plugin-process": "2.3.0",
"@tauri-apps/plugin-shell": "2.2.2",
"@tauri-apps/plugin-sql": "2.2.0",
"@tauri-apps/plugin-store": "2.2.0",
"@tauri-apps/plugin-updater": "2.9.0",
"@tauri-apps/plugin-upload": "2.2.1",
"@tauri-apps/plugin-websocket": "^2.4.0",
"@types/js-cookie": "^3.0.6",
"@vue-office/docx": "^1.6.3",
"@vue-office/excel": "^1.7.14",
"@vue-office/pdf": "^2.0.10",
"@vueuse/core": "^11.0.3",
"axios": "^1.7.5",
"bootstrap-icons": "^1.11.3",
"crypto-js": "^4.2.0",
"dompurify": "^3.2.6",
"element-plus": "^2.11.3",
"encryptlong": "^3.1.4",
"google-protobuf": "^4.0.0",
"highlight.js": "^11.11.1",
"leafer-ui": "1.9.3",
"lodash-es": "^4.17.21",
"markdown-it": "^14.1.0",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"qs": "^6.13.0",
"reflect-metadata": "^0.2.2",
"rollup-plugin-visualizer": "^6.0.3",
"vanilla-lazyload": "^19.1.3",
"vue-demi": "^0.14.10",
"vue-draggable-plus": "^0.5.3",
"vue-i18n": "^11.1.10",
"vue-router": "^4.2.0",
"vue-virt-list": "^1.5.11",
"vue-virtual-scroller": "2.0.0-beta.8"
},
"devDependencies": {
"@tauri-apps/cli": ">=2.0.0-rc.0",
"@types/dompurify": "^3.2.0",
"@types/google-protobuf": "^3.15.12",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.14.10",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/test-utils": "^2.4.6",
"jsencrypt": "^3.3.2",
"mkdirp": "^3.0.1",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"protoc": "^32.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.79.3",
"terser": "^5.31.6",
"ts-proto": "^2.7.7",
"typescript": "^5.5.3",
"unplugin-auto-import": "^0.17.6",
"unplugin-icons": "^0.18.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.3.3",
"vite-plugin-components": "^0.13.3",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-devtools": "^7.3.5",
"vitest": "^3.2.4",
"vue": "^3.5.17",
"vue-tsc": "^2.0.26"
}
}