-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "react-iro",
"version": "0.0.32",
"description": "React Wrapper for iro.js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/LidiaKovac/react-iro.git"
},
"keywords": [
"iro.js",
"react-iro",
"react wrapper",
"react color picker",
"react",
"components",
"ui"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && babel src/react-iro --out-dir dist --copy-files",
"bundle": "rm -rf dist && rollup -c -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"@jaames/iro": "^5.5.2"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/react": ">=17.0.0",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^5.3.1",
"tslib": "^2.6.1",
"typescript": "^5.0.0"
}
}