-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "scoutset",
"version": "1.0.0",
"description": "Scoutset is search engine data explorer",
"main": "dist/electron/main/index.js",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/royteusink/scoutset.git"
},
"keywords": [
"elasticsearch",
"searchengine",
"explorer",
"viewer",
"scoutset"
],
"author": "Roy Teusink",
"license": "MIT",
"bugs": {
"url": "https://github.com/royteusink/scoutset/issues"
},
"homepage": "https://github.com/royteusink/scoutset#readme",
"devDependencies": {
"@types/uuid": "^8.3.4",
"@vitejs/plugin-vue": "^3.0.1",
"electron": "^21.0.1",
"electron-builder": "^23.3.3",
"electron-window-state": "^5.0.3",
"postcss": "^8.4.17",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vite": "^3.2.7",
"vite-plugin-electron": "^0.9.3",
"vue": "^3.2.37",
"vue-router": "4",
"vue-tsc": "^0.40.1"
},
"debug": {
"env": {
"VITE_DEV_SERVER_HOSTNAME": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344,
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344"
}
},
"dependencies": {
"@vueuse/core": "^9.3.0",
"electron-store": "^8.1.0",
"uuid": "^9.0.0"
}
}