-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "modbus-visualizer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "TAURI_ENV=dev tauri dev --no-watch",
"compile-mac": "tauri build --target universal-apple-darwin",
"compile-win32": "tauri build --target i686-pc-windows-msvc",
"compile-winarm64": "tauri build --target aarch64-pc-windows-msvc",
"compile-x64": "tauri build --target x86_64-pc-windows-msvc"
},
"dependencies": {
"@imengyu/vue3-context-menu": "^1.3.5",
"@tauri-apps/api": "^1.5.1",
"echarts": "^5.4.3",
"moment": "^2.30.1",
"tdesign-vue-next": "^1.7.0",
"uuid": "^9.0.1",
"vue": "^3.3.4",
"vue-router": "^4.2.5",
"vue3-grid-layout-next": "^1.0.6",
"vuex": "^4.1.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.6",
"@vitejs/plugin-vue": "^4.2.3",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"unplugin-auto-import": "^0.17.2",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.4.4"
}
}