-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.48 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
{
"name": "react-profile",
"version": "1.3.3",
"description": "React Profile Editor, crop, upload, apply filters and adjust colors for your avatar image. Optimize the image size for your application",
"repository": "https://github.com/mdjfs/react-profile",
"homepage": "https://react-image-editor.com",
"author": "Marcos Fuenmayor",
"license": "Apache-2.0 license",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "node themes/minify.js && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "npm run build"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./themes/": "./themes/",
"./themes/*": "./themes/*.min.css",
"./themes/default": "./themes/default.min.css",
"./themes/dark": "./themes/dark.min.css",
"./themes/default.min.css": "./themes/default.min.css",
"./themes/dark.min.css": "./themes/dark.min.css",
"./package.json": "./package.json"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/register": "^7.22.5",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"cssnano": "^6.0.1",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"postcss": "^8.4.29",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"react-image-crop": "^10.1.5",
"react-pixels": "^0.5.8"
},
"keywords": [
"react",
"profile",
"image",
"image editor",
"image crop",
"crop image",
"image filter",
"filter image",
"filter",
"adjust",
"brightness",
"saturation",
"contrast",
"crop",
"flip",
"flip image",
"flip image horizontal",
"horizontal",
"flip image vertical",
"vertical",
"editor",
"avatar",
"canvas",
"react image editor",
"react avatar editor",
"react profile editor",
"react image crop",
"react avatar crop",
"react profile crop"
]
}