-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "@daveyplate/tailwind-drag-dropzone",
"homepage": "https://github.com/daveyplate/tailwind-drag-dropzone",
"version": "1.0.6",
"description": "Wraps any component with a drag and drop zone for file uploads",
"module": "dist/index",
"types": "dist/index",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "rm -rf dist && npm run build"
},
"keywords": [
"react",
"tailwind",
"tailwindcss",
"drag",
"drop",
"zone",
"dropzone",
"file",
"upload"
],
"author": "daveycodez",
"license": "ISC",
"devDependencies": {
"@types/react": "^19.0.1",
"typescript": "^5.6.2",
"react": "file:../daveyplate/node_modules/react",
"react-dom": "file:../daveyplate/node_modules/react-dom"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@heroicons/react": ">=2.1.5",
"clsx": ">=2.1.1",
"react-dropzone": "^14.2.9",
"tailwind-merge": ">=2.5.2"
}
}