forked from react-dropzone/react-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.27 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
{
"name": "react-dropzone-esm",
"description": "Simple HTML5 drag-drop zone with React.js",
"version": "15.2.0",
"types": "./types/react-dropzone.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"import": {
"types": "./types/react-dropzone.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./types/react-dropzone.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"sideEffects": false,
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && rollup -c rollup.config.mjs",
"release:patch": "npm run build && npm version patch && npm publish && git push",
"release:minor": "npm run build && npm version minor && npm publish && git push",
"release:major": "npm run build && npm version major && npm publish && git push"
},
"keywords": [
"react-component",
"react",
"drag",
"drop",
"upload"
],
"repository": {
"type": "git",
"url": "https://github.com/rtivital/react-dropzone-esm.git"
},
"bugs": {
"url": "https://github.com/rtivital/react-dropzone-esm/issues"
},
"homepage": "https://github.com/rtivital/react-dropzone-esm",
"author": "Vitaly Rtishchev <[email protected]>",
"contributors": [
"Andrey Okonetchnikov <[email protected]> (http://okonet.ru)",
"Mike Olson <[email protected]>",
"Param Aggarwal",
"Tyler Waters <[email protected]>",
"Rick Markins <[email protected]>",
"Roland Groza <[email protected]>"
],
"license": "MIT",
"peerDependencies": {
"react": ">= 16.8 || 18.0.0"
},
"dependencies": {
"prop-types": "^15.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"esbuild": "^0.19.4",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.4",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-esbuild": "^6.0.2",
"rollup-plugin-node-externals": "^6.1.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">= 10.13"
},
"browserslist": [
"defaults"
],
"packageManager": "[email protected]"
}