-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1021 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1021 Bytes
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
{
"name": "electron-pixel-picker",
"version": "1.0.2",
"description": "Zero-dependency screen color picker for Electron. Fullscreen overlay with pixel-grid magnifier, scroll-to-zoom, and hex color output.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"electron",
"color-picker",
"eyedropper",
"screen",
"pixel",
"magnifier",
"desktop-capturer",
"screen-color-picker",
"color-sampling",
"cross-window",
"pick-color",
"hex-color",
"design-tool",
"pixel-grid",
"zoom"
],
"author": "Caldis",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Caldis/electron-pixel-picker"
},
"homepage": "https://caldis.github.io/electron-pixel-picker",
"peerDependencies": {
"electron": ">=20.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"electron": "^28.0.0"
}
}