forked from MinJieLiu/react-photo-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "react-photo-view",
"version": "0.5.2",
"description": "一款精致的 React 的图片预览组件",
"author": "MinJieLiu",
"license": "MIT",
"repository": "https://github.com/MinJieLiu/react-photo-view.git",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"typings": "dist/index.d.ts",
"keywords": [
"react",
"react-component",
"react-photo",
"react-photo-view",
"photo",
"photo-view",
"gallery"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "npm run build"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.uniqueid": "^4.0.1"
},
"peerDependencies": {
"classnames": "^2.2.0",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@svgr/rollup": "^4.3.3",
"@types/classnames": "^2.2.9",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.uniqueid": "^4.0.6",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^4.4.0",
"classnames": "^2.2.6",
"cross-env": "^6.0.3",
"less": "^3.10.3",
"prettier": "^1.18.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.27.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-typescript2": "^0.25.2",
"rollup-plugin-url": "^3.0.1",
"typescript": "^3.7.2"
},
"files": [
"dist"
]
}