forked from specter256/react-simple-image-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 910 Bytes
/
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
{
"name": "react-simple-image-viewer",
"version": "0.0.8",
"description": "Simple image viewer component for React",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/specter256/react-simple-image-viewer.git"
},
"author": "Alexander Tarasov",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"image",
"images",
"image-viewer",
"lightbox",
"gallery"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"postcss": "^8.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.51.0",
"rollup-plugin-postcss": "^4.0.0",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
}
}