-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.69 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
{
"name": "react-mobile-image-editor",
"version": "1.0.1",
"type": "module",
"files": [
"lib",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./lib/react-mobile-image-editor.js",
"require": "./lib/react-mobile-image-editor.cjs"
}
},
"keywords": [
"react",
"component",
"mobile",
"image editor",
"image crop",
"photo editor",
"react mobile image editor"
],
"repository": {
"type": "git",
"url": "https://github.com/chenmoonmo/react-mobile-image-editor"
},
"main": "./lib/react-mobile-image-editor.umd.cjs",
"module": "./lib/react-mobile-image-editor.js",
"typings": "./lib/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"react-konva-utils": "^0.3.1",
"stateshot": "^1.3.5",
"use-image": "^1.1.0",
"konva": "^8.3.14",
"react-konva": "^18.2.3"
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-visualizer": "^5.9.0",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vite-plugin-svgr": "^2.4.0",
"konva": "^8.3.14",
"react-konva": "^18.2.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"react-konva-utils": "^0.3.1",
"stateshot": "^1.3.5",
"use-image": "^1.1.0"
}
}