forked from vascofg/react-admin-color-input
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "react-admin-color-picker",
"version": "1.0.3",
"description": "<ColorInput> and <ColorField> components for react-admin (v4). Forked from vascofg/react-admin-color-input.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"LICENSE",
"*.md",
"lib"
],
"repository": "https://github.com/alexgschwend/react-admin-color-picker.git",
"keywords": [
"reactjs",
"rest",
"react",
"color",
"picker",
"html"
],
"bugs": {
"url": "https://github.com/alexgschwend/react-admin-color-picker/issues"
},
"homepage": "https://github.com/alexgschwend/react-admin-color-picker#readme",
"author": "Alexander Gschwend",
"license": "MIT",
"devDependencies": {
"@mui/material": "^5.8.5",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-color": "^3.0.6",
"copyfiles": "^2.4.1",
"ra-core": "^4.1.5",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"scripts": {
"build": "yarn clean && yarn build:esm && yarn build:cjs && yarn copy-files",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"clean": "rimraf lib/",
"copy-files": "copyfiles -u 1 src/**/*.html src/**/*.css lib/esm && copyfiles -u 1 src/**/*.html src/**/*.css lib/cjs"
},
"peerDependencies": {
"ra-core": "^4.1.5",
"react": "^18.1.0"
},
"dependencies": {
"lodash.get": "^4.4.2",
"react-color": "^2.19.3"
}
}