-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 1.98 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
{
"name": "gifit",
"version": "1.0.1",
"description": "Record GIFs from your screen",
"keywords": [
"gif",
"electron",
"recorder"
],
"author": {
"name": "benjaminadk",
"email": "[email protected]",
"url": "https://github.com/benjaminadk"
},
"repository": {
"type": "git",
"url": "https://github.com/benjaminadk/gifit.git"
},
"license": "ISC",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"release": "electron-builder -p always"
},
"dependencies": {
"archiver": "3.0.0",
"date-fns": "2.0.0-alpha.27",
"gif-encoder-2": "1.0.0",
"immutable": "4.0.0-rc.12",
"iohook": "0.4.6",
"lodash.throttle": "4.1.1",
"polished": "3.2.0",
"react": "16.8.6",
"react-compound-slider": "2.0.0",
"react-dom": "16.8.6",
"react-rnd": "9.1.2",
"source-map-support": "0.5.12",
"styled-components": "4.2.0",
"styled-icons": "7.11.0",
"system-font-families": "0.4.1",
"yauzl": "2.10.0"
},
"devDependencies": {
"@babel/preset-react": "7.0.0",
"electron": "5.0.0",
"electron-builder": "20.40.2",
"electron-webpack": "2.6.2",
"webpack": "4.30.0"
},
"build": {
"appId": "Benjaminadk.Gifit",
"productName": "GifIt",
"win": {
"icon": "static/icon.ico",
"publish": {
"provider": "github",
"owner": "benjaminadk"
},
"target": [
"nsis"
]
},
"mac": {
"category": "public.app-category.utilities",
"icon": "static/icon.icns",
"publish": {
"provider": "github",
"owner": "benjaminadk"
},
"target": [
"dmg"
]
},
"directories": {
"output": "release"
}
},
"iohook": {
"targets": [
"node-72",
"electron-70"
],
"platforms": [
"win32",
"darwin"
],
"arches": [
"x64",
"ia32"
]
},
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "5.0.0"
}
}