forked from Toinane/colorpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.38 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
{
"name": "colorpicker",
"productName": "colorpicker",
"version": "2.0.4",
"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",
"standard": "standard",
"pack": "electron-builder --dir",
"publish": "snapcraft push --release=stable *.snap",
"release": "electron-builder --publish=never --config colorpicker-build.json",
"release-linux": "electron-builder --publish=never --config colorpicker-build.json --linux deb appImage",
"release-snap": "snapcraft snap",
"release-window": "electron-builder --publish=never --config colorpicker-build.json --win nsis portable",
"nightly": "electron-builder --publish=never --config colorpicker-build-nightly.json",
"nightly-linux": "electron-builder --publish=never --config colorpicker-build-nightly.json --linux deb appImage",
"rebuild": "npm rebuild --runtime=electron --target=8.2.1 --disturl=https://atom.io/download/electron --abi=76"
},
"repository": "https://github.com/toinane/colorpicker",
"keywords": [
"Colorpicker",
"colors",
"code",
"shading",
"picker",
"Toinane",
"Crea-THAT",
"crea-that"
],
"dependencies": {
"electron-json-storage": "^4.1.8",
"request": "^2.88.2",
"robotjs": "git+https://github.com/Toinane/robotjs",
"sortablejs": "^1.10.2",
"tippy.js": "^6.1.1"
},
"optionalDependencies": {
"osx-mouse": "git+https://github.com/Toinane/osx-mouse",
"win-mouse": "git+https://github.com/Toinane/win-mouse",
"iohook": "^0.6.5"
},
"devDependencies": {
"electron": "8.2.4",
"electron-builder": "22.4.1",
"minimist": "^1.2.5",
"standard": "14.3.3"
},
"author": {
"name": "Toinane",
"email": "[email protected]",
"url": "https://toinane.crea-th.at"
},
"bugs": "https://github.com/toinane/colorpicker/issues",
"homepage": "https://crea-th.at/p/colorpicker",
"license": "GPL-3.0",
"iohook": {
"targets": [
"electron-76"
],
"platforms": [
"linux"
],
"arches": [
"x64",
"ia32"
]
}
}