forked from tingbot/tide-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.77 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
111
112
113
{
"scripts": {
"start": "electron app/app.js",
"postinstall": "install-app-deps",
"build-python": "python scripts/build-python-env.py",
"pack": "npm run build-python && webpack -p && build",
"dist": "npm run build-python && webpack -p && build",
"cibuild": "npm run build-python && webpack -p && build --publish never",
"dev": "concurrently --kill-others --raw 'webpack --progress --watch' 'npm run start'"
},
"build": {
"asar": false,
"appId": "com.tingbot.tide-electron",
"app-category-type": "public.app-category.developer-tools",
"extraResources": [
"default.tingapp",
"vendor",
"vendor/**/.*",
"vendor/**/.*/**",
"assets/TingappIcon.icns"
],
"linux": {
"target": [
"deb",
"rpm",
"tar.gz"
]
},
"deb": {
"depends": [
"python2.7",
"python-cryptography"
]
},
"rpm": {
"depends": [
"python",
"python2-cryptography"
]
},
"dmg": {
"title": "Install Tide",
"icon": "assets/dmgicon.icns",
"icon-size": 100,
"window": {
"size": {
"width": 562,
"height": 400
}
},
"contents": [
{
"x": 425,
"y": 235,
"type": "link",
"path": "/Applications"
},
{
"x": 140,
"y": 235,
"type": "file"
}
]
},
"extend-info": "assets/ExtraInfo.plist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tingbot/tide-electron.git"
},
"keywords": [
"Electron",
"Tingbot"
],
"licence": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/tingbot/tide-electron/issues"
},
"homepage": "https://github.com/tingbot/tide-electron#readme",
"devDependencies": {
"babel-core": "~6.8.0",
"babel-loader": "~6.2.4",
"babel-plugin-transform-runtime": "~6.8.0",
"babel-preset-es2015": "~6.6.0",
"babel-runtime": "~6.6.1",
"concurrently": "^2.1.0",
"css-loader": "~0.23.1",
"electron-builder": "7.10.0",
"electron-devtools-installer": "^2.0.1",
"electron-prebuilt": "~1.3.3",
"electron-rebuild": "^1.1.4",
"file-loader": "~0.8.5",
"font-awesome": "^4.6.1",
"font-awesome-webpack": "0.0.4",
"fs-extra": "^0.30.0",
"json-loader": "^0.5.4",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"node-loader": "github:joerick/node-loader",
"style-loader": "^0.13.1",
"url-loader": "~0.5.7",
"vue": "~1.0.21",
"vue-hot-reload-api": "~1.3.2",
"vue-html-loader": "~1.2.2",
"vue-loader": "~8.3.1",
"vue-style-loader": "~1.0.0",
"webpack": "~1.13.0",
"webpack-dev-server": "~1.14.1"
},
"directories": {
"buildResources": "assets"
}
}