-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.04 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
{
"name": "color-chooser",
"version": "1.1.21",
"description": "A react component for selecting colors.",
"homepage": "https://github.com/obsius/color-chooser",
"author": "Jeff Seaman <[email protected]> (https://www.ngc6822.com)",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"prepare": "rollup --bundleConfigAsCjs -c"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"copyfiles": "^2.4.1",
"rollup": "^4.19.0",
"rollup-plugin-babel": "^4.4.0"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/transform-react-jsx"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"chrome": "90"
}
}
]
]
},
"keywords": [
"color",
"choose",
"chooser",
"select",
"selector",
"picker",
"colors",
"performance",
"performant"
]
}