-
-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 KB
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
{
"name": "colorpicker",
"productName": "colorpicker",
"version": "2.3.0",
"description": "Colorpicker is a little Electron app that can show colors with hex/rgb code, and generate shading for your color.",
"main": "src/main.js",
"scripts": {
"start": "npx electron src/main.js",
"publish": "snapcraft push --release=stable *.snap",
"release": "electron-builder --publish=never --config build/colorpicker-build.json",
"release-linux": "electron-builder --publish=never --config build/colorpicker-build.json --linux deb appImage",
"release-snap": "snapcraft snap",
"release-window": "electron-builder --publish=never --config build/colorpicker-build.json --win nsis portable",
"rebuild": "npm rebuild --runtime=electron --target=38.2.0 --disturl=https://electronjs.org/headers --abi=139"
},
"repository": "https://github.com/toinane/colorpicker",
"keywords": [
"Colorpicker",
"colors",
"code",
"shading",
"picker"
],
"config": {
"target": "38.2.0",
"disturl": "https://electronjs.org/headers",
"runtime": "electron",
"build_from_source": true
},
"dependencies": {
"electron-json-storage": "^4.6.0",
"robotjs": "github:Toinane/robotjs",
"semver": "^7.7.2"
},
"optionalDependencies": {
"iohook": "github:Toinane/iohook",
"osx-mouse": "github:Toinane/osx-mouse",
"win-mouse": "github:Toinane/win-mouse"
},
"devDependencies": {
"electron": "^38.2.0",
"electron-builder": "^26.0.12"
},
"author": {
"name": "Toinane",
"url": "https://colorpicker.fr"
},
"bugs": "https://github.com/toinane/colorpicker/issues",
"homepage": "https://crea-th.at/p/colorpicker",
"license": "GPL-3.0",
"iohook": {
"targets": [
"electron-139"
],
"platforms": [
"linux"
],
"arches": [
"x64",
"ia32"
]
}
}