-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
110 lines (110 loc) · 3.49 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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "etcd-manager",
"version": "1.2.0",
"description": "Multi-platform ETCD v3 client and GUI",
"author": "Tamas Geschitz <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "npx tslint -p tsconfig.json",
"electron:build": "vue-cli-service electron:build",
"electron:build:linux": "vue-cli-service electron:build --linux AppImage snap tar.gz --x64",
"electron:build:mac": "vue-cli-service electron:build --macos dmg --x64",
"electron:build:win": "vue-cli-service electron:build --windows nsis --x64 --ia32",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=public --flatten",
"electron:publish:linux": "vue-cli-service electron:build --linux AppImage snap tar.gz --x64 -p always",
"electron:publish:mac": "vue-cli-service electron:build --macos dmg --x64 -p always",
"electron:publish:win": "vue-cli-service electron:build --windows nsis --x64 --ia32 -p always",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "npx electron-builder install-app-deps",
"postuninstall": "npx electron-builder install-app-deps",
"test": "mocha test/spec"
},
"main": "background.js",
"dependencies": {
"@grpc/proto-loader": "^0.5.1",
"@trodi/electron-splashscreen": "^1.0.0",
"core-js": "^3.3.2",
"electron-updater": "^4.2.0",
"etcd3": "^0.2.11",
"grpc": "1.24.2",
"list-to-tree": "^2.2.3",
"lodash-es": "^4.17.11",
"markdown": "^0.5.0",
"marked": "^1.0.0",
"mousetrap": "^1.6.3",
"protobufjs": "^6.8.8",
"uuid": "^3.3.2",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-i18n": "^8.11.2",
"vue-localstorage": "^0.6.2",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.3",
"vuelidate": "^0.7.4",
"vuetify": "^1.5.14",
"vuex": "^3.0.1",
"webpack-proto-loader": "^0.5.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.3",
"@types/marked": "^0.7.4",
"@types/mousetrap": "^1.6.3",
"@types/uuid": "^3.4.4",
"@types/vuelidate": "^0.7.5",
"@vue/cli": "^4",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-typescript": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^6",
"electron-builder": "^21",
"electron-icon-builder": "^1.0.1",
"husky": "^4.2.5",
"mocha": "^6.2.0",
"node-sass": "^4.9.0",
"sass-loader": "^8",
"spectron": "^8",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"vue-cli-plugin-electron-builder": "^1.3.2",
"vue-devtools": "^5.0.0-beta.1",
"vue-template-compiler": "^2.5.21"
},
"bugs": {
"url": "https://github.com/icellmobilsoft/etcdmanager/issues/new?assignees=&labels=&template=bug_report.md&title=%5BBUG%5D"
},
"collaborators": [
"Tamas Geschitz <[email protected]>",
"Jozsef Szalai",
"David Onofer",
"Gabor Nagy"
],
"contributors": [
"Tamas Geschitz <[email protected]>",
"Jozsef Szalai",
"David Onofer",
"Daniel Rudolf",
"Gabor Nagy"
],
"engines": {
"node": ">= 10.0.0"
},
"homepage": "https://etcdmanager.io",
"keywords": [
"etcd",
"etcd3",
"gui",
"client",
"admin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/icellmobilsoft/etcdmanager.git"
},
"title": "ETCD Manager"
}