-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
{
"name": "shadcn-dropzone",
"version": "0.2.1",
"description": "Ready to use File Upload Dropzone component, built with shadcn/ui and react-dropzone.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "Dirag Biswas (https://github.com/diragb)",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/diragb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diragb/shadcn-dropzone.git"
},
"bugs": {
"url": "https://github.com/diragb/shadcn-dropzone/issues"
},
"homepage": "https://github.com/diragb/shadcn-dropzone#readme",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^5.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"postcss": "^8",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"dependencies": {
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"react-dropzone": "^14.2.3",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"truncate": "^3.0.0"
},
"keywords": [
"shadcn-ui",
"tailwindcss",
"react",
"drag",
"drop",
"upload",
"typescript"
],
"license": "MIT"
}