-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 853 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
{
"name": "css-in-js-platform",
"version": "1.0.0",
"description": "Platform.select for native CSS-IN-JS solutions(styled-components, emotion, etc.)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"repository": "https://github.com/junhoyeo/css-in-js-platform",
"author": {
"name": "JunhoYeo",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"install-peers": "install-peers -f"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"peerDependencies": {
"react": "^16.13.1",
"react-native": "^0.62.2"
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.4",
"install-peers-cli": "^2.2.0",
"typescript": "^3.8.3"
},
"dependencies": {
"css-in-js-platform": "^0.0.1"
}
}