-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.67 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
114
115
116
117
118
119
120
121
122
{
"name": "twitchi",
"version": "4.0.1",
"author": "Geordie P [github/GeordieP] <[email protected]>",
"license": "MIT",
"description": "View your Twitch following list, and open live streams in a native video player with just a click",
"scripts": {
"test": "jest",
"dev": "webpack-dev-server --mode development --hot --inline --watch --config ./config/webpack.dev.js & sleep 3 && NODE_ENV='development' electron ./src/window.js ",
"build": "webpack --mode production --config ./config/webpack.prod.js",
"dist": "webpack --mode production --config ./config/webpack.prod.js && electron-builder",
"electron": "electron ./build/window.js",
"package": "electron-builder --dir"
},
"build": {
"appId": "com.geordiep.twitchi",
"productName": "Twitchi",
"directories": {
"buildResources": "resources",
"output": "dist"
},
"files": [
"build/"
],
"mac": {
"category": "public.app-category.entertainment",
"icon": "resources/twitchi.icns",
"target": "dmg"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"msi",
"zip"
],
"icon": "resources/twitchi.ico"
},
"linux": {
"target": [
"zip"
]
}
},
"babel": {
"presets": "env",
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
],
"env": {
"test": {
"plugins": [
[
"resolver",
{
"resolveDirs": [
"src/app",
"test"
]
}
]
]
}
}
},
"main": "build/window.js",
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@hyperapp/transitions": "^1.0.2",
"babel-loader": "^7.1.4",
"babel-plugin-resolver": "^1.1.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.10",
"electron": "^1.8.4",
"electron-builder": "^20.5.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"hyperapp": "^1.2.0",
"hyperapp-hash-router": "leavehouse/hyperapp-hash-router",
"image-webpack-loader": "^4.1.0",
"jest": "^22.4.3",
"mini-css-extract-plugin": "^0.2.0",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"style-loader": "^0.20.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.5.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^2.0.11",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2",
"webpack-stylish": "^0.1.8"
},
"dependencies": {
"@geordiep/result": "^1.0.0",
"command-exists": "^1.2.6",
"electron-store": "^1.3.0",
"fs-extra": "^6.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
}
}