forked from skye0207/TDengineGUI
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.4 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
{
"name": "TDengineGUI",
"version": "1.0.4",
"description": "A simple TDengine DeskTop Manager",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"build": {
"appId": "com.skype.tdenginegui",
"productName": "TDengineGUI",
"win": {
"icon": "build/icons/logo1.ico",
"target": [
"nsis"
]
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "build/icons/logo.icns",
"target": {
"target": "default",
"arch": [
"arm64",
"x64"
]
}
},
"linux": {
"icon": "build/icons/logo.icns"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"Electron",
"TDengine",
"GUI"
],
"author": "skye0207",
"devDependencies": {
"electron": "^11.5.0",
"electron-builder": "^22.9.1"
},
"dependencies": {
"axios": "^0.21.1",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.0.1",
"element-ui": "^2.15.0",
"vue": "^2.6.12"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}