-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "electron-picker-remix",
"version": "1.0.4",
"description": "A comprehensive desktop color ulitity",
"repository": "https://github.com/benjaminadk/color-tool-remix",
"main": "./dist/main/main.js",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"release": "electron-builder -p onTagOrDraft"
},
"keywords": [],
"author": "benjaminadk",
"license": "MIT",
"dependencies": {
"color-string": "^1.5.3",
"doc-ready": "^1.0.4",
"electron-devtools-installer": "^2.2.4",
"electron-prompt-benjaminadk": "^1.0.7",
"electron-updater": "^4.0.6",
"prop-types": "^15.6.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rgb-to-hsl": "0.0.3",
"source-map-support": "^0.5.9",
"styled-components": "^4.1.2",
"styled-icons": "^5.4.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-react": "^7.0.0",
"electron": "^3.0.13",
"electron-builder": "^20.38.2",
"electron-webpack": "^2.6.1",
"webpack": "^4.27.1"
},
"build": {
"appId": "com.electron.color-tool-remix",
"productName": "Color Tool Remix",
"win": {
"icon": "static/icon.ico",
"publish": {
"provider": "github",
"owner": "benjaminadk"
},
"target": [
"nsis"
]
},
"mac": {
"category": "public.app-category.graphics-design",
"icon": "static/icon.icns",
"publish": {
"provider": "github",
"owner": "benjaminadk"
},
"target": [
"dmg"
]
},
"directories": {
"output": "release"
}
}
}