forked from Milutin-P/react-media-library-revived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "react-media-library-revived",
"version": "1.2.2",
"description": "React Media Library Revived is a UI package similar to the WordPress media library, but for React. It features file drag-and-drop as well as a library to select previously uploaded files.",
"homepage": "https://github.com/Milutin-P/react-media-library-revived#readme",
"main": "build/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:Milutin-P/react-media-library-revived.git"
},
"keywords": [
"react",
"reactjs",
"react-dom",
"react-bootstrap",
"drag-and-drop",
"filemanager",
"file-manager",
"file-manager-ui"
],
"scripts": {
"dev": "tsc -w",
"prepare": "npm run build",
"build": "rm -rf build && tsc",
"prettier": "prettier \"src/**/*.{js,jsx,tsx,ts,scss}\" --write --config ./.prettierrc"
},
"author": "Milutin Pesikan <milutin.pesikan@gmail.com> (https://milut.in)",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.7.16",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"typescript": "^4.8.2",
"prettier": "^2.7.1"
},
"dependencies": {
"react-bootstrap": "^2.5.0",
"react-dropzone": "^14.2.2"
},
"peerDependencies": {
"react": "^16.X.X",
"react-dom": "^16.X.X"
},
"bugs": {
"url": "https://github.com/Milutin-P/react-media-library-revived/issues",
"email": "milutin.pesikan@gmail.com"
}
}