-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
133 lines (133 loc) · 4.17 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "react-image-color-picker",
"version": "1.3.4",
"description": "The react-image-color-picker is a powerful and versatile eye-dropper React component that enables users to easily select colors from an image. It provides an intuitive and interactive interface for color picking, zooming, and previewing, making it ideal for various use cases such as image editing, color analysis, and design applications.",
"author": "gusttaswe <dev.gustta.h@gmail.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/gusttaswe/react-image-color-picker.git"
},
"readme": "README.md",
"homepage": "https://technog.com.br/projects/react-image-color-picker",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c --bundleConfigAsCjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "jest --watchAll",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.3",
"@storybook/addon-essentials": "^7.0.20",
"@storybook/addon-interactions": "^7.0.20",
"@storybook/addon-links": "^7.0.20",
"@storybook/blocks": "^7.0.20",
"@storybook/react": "^7.0.20",
"@storybook/react-webpack5": "^7.0.20",
"@storybook/testing-library": "^0.0.14-next.2",
"@swc/core": "^1.3.66",
"@swc/jest": "^0.2.26",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^25.2.3",
"@types/node": "^12.12.38",
"@types/react": "^16.14.43",
"@types/react-dom": "^16.9.19",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"autoprefixer": "^10.4.14",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-storybook": "^0.6.12",
"gh-pages": "^2.2.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.5.1",
"jest-environment-jsdom": "^29.5.0",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "^2.0.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^3.4.1",
"rollup": "^3.25.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"storybook": "^7.0.20",
"typescript": "^5.1.5"
},
"dependencies": {
"styled-components": "^6.0.0-rc.6"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"keywords": [
"react",
"eye-dropper",
"React eyedropper",
"eye-dropper tool",
"image color picker",
"color picker",
"color pick",
"color selection",
"color picker component",
"image color selection",
"image color palette",
"image color picking",
"image color preview",
"zoom preview",
"image zooming",
"canvas color picker",
"responsive color picker",
"color picking tool",
"image manipulation",
"color analysis",
"image analysis",
"color detection",
"image processing",
"color extraction",
"color identification"
]
}