-
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.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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": "react-avatar-crop",
"version": "1.0.2",
"description": "Lightweight avatar cropper",
"homepage": "https://github.com/HowToDisappear/react-avatar-crop#readme",
"author": "Nikita Veremchuk <nikita.veremchuk@gmail.com>",
"keywords": [
"image",
"avatar",
"crop",
"cropper",
"react"
],
"license": "MIT",
"main": "dist/main.bundle.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HowToDisappear/react-avatar-crop.git"
},
"bugs": {
"url": "https://github.com/HowToDisappear/react-avatar-crop/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --env environment=production",
"dev": "webpack serve --open --env environment=development"
},
"exports": {
".": "./dist/main.bundle.js",
"./css": "./dist/main.css"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"style-loader": "^3.3.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}