-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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": "cropperjs-react",
"version": "1.5.2",
"description": "React component wrapper for CropperJS using react hooks.",
"main": "dist/index.js",
"scripts": {
"audit:fix": "npx yarn-audit-fix",
"build": "babel ./src -d dist",
"deduplicate": "npx yarn-deduplicate yarn.lock",
"update": "npx npm-check-updates -u",
"update:major": "npx npm-check-updates --target latest",
"update:minor": "npx npm-check-updates --target minor",
"update:patch": "npx npm-check-updates --target patch"
},
"browserslist": "> 0.25%, not dead",
"repository": {
"type": "git",
"url": "https://github.com/brandfolder/cropperjs-react"
},
"keywords": [
"react",
"cropper",
"cropperjs",
"react-hooks"
],
"author": "Anders Wood",
"license": "ISC",
"dependencies": {
"cropperjs": "^1.5.12",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"resolutions": {
"minimatch": "^3.1.3"
},
"volta": {
"node": "20.15.1",
"yarn": "1.22.22"
}
}