-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.27 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.27 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
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-attachment-kit",
"version": "0.1.3",
"type": "module",
"description": "A complete React component kit for handling file attachments with specialized viewers for images, videos, PDFs, and documents.",
"main": "./dist/react-attachment-kit.cjs",
"module": "./dist/react-attachment-kit.js",
"exports": {
".": {
"import": "./dist/react-attachment-kit.js",
"require": "./dist/react-attachment-kit.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "cd demo && npm run dev",
"build": "vite build",
"build:demo": "cd demo && npm run build",
"lint": "eslint ."
},
"keywords": [
"react",
"attachment",
"file-preview",
"image-viewer",
"video-player",
"pdf-viewer",
"file-viewer"
],
"author": "Shanu Sivakumar <shanuflash@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shanuflash/react-attachment-kit"
},
"homepage": "https://github.com/shanuflash/react-attachment-kit#readme",
"bugs": {
"url": "https://github.com/shanuflash/react-attachment-kit/issues"
},
"peerDependencies": {
"media-chrome": "^4.15.1",
"react": ">=18.3.1",
"react-dom": ">=18.3.1",
"react-pdf": "^10.2.0"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.548.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/css": "^0.14.0",
"@eslint/js": "^9.38.0",
"@tailwindcss/vite": "^4.1.16",
"@types/node": "^24.9.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.4.0",
"media-chrome": "^4.15.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^10.0.0",
"react-pdf": "^10.2.0",
"tailwindcss": "^4.1.16",
"tw-animate-css": "^1.4.0",
"vite": "^7.1.12"
}
}