-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.47 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-files-preview",
"description": "A React file preview component with built-in support for image editing, image carousel/slider, and download functionality, making it easy to display and manage files in your application",
"private": false,
"version": "3.0.0",
"author": "Usama Chouhan (musama619)",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/musama619/react-files-preview",
"bugs": {
"url": "https://github.com/musama619/react-files-preview/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/musama619/react-files-preview.git"
},
"module": "./dist/react-files-preview.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-files-preview.es.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"react",
"file preview",
"react file previewer",
"react images",
"react image viewer",
"image viewer",
"react image editor",
"image editor",
"react image carousel",
"image carousel",
"carousel",
"react image slider",
"image slider",
"file viewer",
"react-file-view",
"react file viewer",
"react file preview",
"react files"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "npm run build"
},
"peerDependencies": {
"react": ">=16.2.0",
"react-dom": ">=16.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^24.1.0",
"path": "^0.12.7",
"postcss": "^8.4.24",
"prettier": "^3.3.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.4",
"vite": "^6.2.5",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-lib-inject-css": "^2.2.1",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.1.1"
},
"dependencies": {
"react-photo-editor": "^3.0.0"
}
}