-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 994 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
40
41
42
43
44
45
46
47
48
{
"name": "emotion-box",
"version": "2.0.0",
"description": "a collection of css-in-js flexbox layout components",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "hemlok",
"files": [
"lib"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc"
},
"keywords": [
"emotion",
"css-in-js",
"flexbox",
"layouts",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/hemlok/emotion-box"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false,
"jsxBracketSameLine": true
},
"devDependencies": {
"@emotion/core": "^10.0.16",
"@emotion/styled": "^10.0.15",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.8.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3"
},
"peerDependencies": {
"@emotion/core": "~10",
"@emotion/styled": "~10"
},
"dependencies": {}
}