-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 815 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 815 Bytes
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
{
"name": "react-mobile-sized-view",
"version": "2.0.0",
"description": "Mobile sized view component for React",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"repository": "https://github.com/junhoyeo/react-mobile-sized-view",
"author": {
"name": "JunhoYeo",
"email": "hanaro0704@naver.com"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"install-peers": "install-peers -f"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/styled-components": "^5.1.0",
"install-peers-cli": "^2.2.0",
"typescript": "^3.8.3"
},
"dependencies": {
"styled-components": "^5.1.1",
"tslib": "^2.0.3"
}
}