-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
82 lines (82 loc) · 3.13 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
{
"name": "es-client",
"version": "3.1.9",
"description": "elasticsearch客户端",
"type": "module",
"author": {
"name": "Esion",
"email": "m17762618644@163.com",
"url": "https://blog.esion.xyz"
},
"repository": {
"type": "gitee",
"directory": "/",
"url": "https://gitee.com/qiaoshengda/es-client"
},
"license": "Apache-2.0",
"homepage": "https://es-client.esion.xyz",
"scripts": {
"dev": "vite --host",
"dev:ts": "vite --host --mode=tsbrowser",
"dev:web": "vite --host --mode=web",
"dev:utools": "vite --host --mode=utools -c config/vite.utools.ts",
"dev:tauri": "vite --host --mode=desktop_windows",
"dev:electron": "chcp 65001 && vite --host --mode=electron -c config/vite.electron.ts",
"build": "vue-tsc --noEmit && vite build",
"build:web": "vue-tsc --noEmit && vite build --mode=web",
"build:edge": "vue-tsc --noEmit && vite build --mode=edge -c config/vite.edge.ts",
"build:chrome": "vue-tsc --noEmit && vite build --mode=chrome -c config/vite.chrome.ts",
"build:firefox": "vue-tsc --noEmit && vite build --mode=firefox",
"build:ts": "vue-tsc --noEmit && vite build --mode=tsbrowser",
"build:utools": "vue-tsc --noEmit && vite build --mode=utools -c config/vite.utools.ts",
"build:server": "vue-tsc --noEmit && vite build --mode=server -c config/vite.server.ts",
"build:tauri": "vue-tsc --noEmit && vite build --mode=tauri -c config/vite.tauri.ts",
"build:vscode": "vue-tsc --noEmit && vite build --mode=vscode",
"build:electron": "vue-tsc --noEmit && vite build --mode=electron -c config/vite.electron.ts",
"preview": "vite preview",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@arco-design/web-vue": "^2.55.2",
"@json2csv/plainjs": "^6.1.3",
"@vueuse/core": "^9.13.0",
"@vueuse/integrations": "^10.9.0",
"axios": "^1.6.8",
"dexie": "^3.2.7",
"fuse.js": "^6.6.2",
"highlight.js": "^11.9.0",
"idb-keyval": "^6.2.1",
"json-bigint": "^1.0.0",
"jszip": "^3.10.1",
"less": "^4.2.0",
"less-loader": "^11.1.4",
"monaco-editor": "^0.34.1",
"pinia": "^2.1.7",
"sortablejs": "^1.15.2",
"vconsole": "^3.15.1",
"vue": "^3.4.27",
"vue-router": "^4.3.2",
"vxe-table": "^4.6.13",
"webdav": "^5.6.0",
"xe-utils": "^3.5.26",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tauri-apps/api": "^1.5.6",
"@tauri-apps/cli": "^1.5.14",
"@types/js-yaml": "^4.0.9",
"@types/json-bigint": "^1.0.4",
"@types/json2csv__plainjs": "^6.1.4",
"@types/jszip": "^3.4.1",
"@types/node": "^18.19.33",
"@types/sortablejs": "^1.15.8",
"@types/x2js": "^3.1.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"typescript": "^4.9.5",
"utools-api-types": "^5.0.0",
"vite": "^5.2.11",
"vue-tsc": "^2.0.19"
}
}