-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpackage.json
63 lines (63 loc) · 1.42 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
{
"name": "@emotion/styled",
"version": "11.0.0-rc.0",
"description": "styled API for emotion",
"main": "dist/styled.cjs.js",
"module": "dist/styled.esm.js",
"types": "types/index.d.ts",
"license": "MIT",
"repository": "https://github.com/emotion-js/emotion/tree/master/packages/styled",
"scripts": {
"test:typescript": "dtslint types"
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"@emotion/babel-plugin": "^11.0.0-rc.0",
"@emotion/is-prop-valid": "^1.0.0-rc.0",
"@emotion/serialize": "^1.0.0-rc.0",
"@emotion/utils": "^1.0.0-rc.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"@emotion/react": "^11.0.0-rc.0",
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@emotion/react": "11.0.0-rc.0",
"dtslint": "^0.3.0",
"react": "^16.11.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist",
"base",
"types/*.d.ts",
"macro.d.ts",
"macro.js",
"macro.js.flow"
],
"umd:main": "dist/styled.umd.min.js",
"browser": {
"./dist/styled.cjs.js": "./dist/styled.browser.cjs.js",
"./dist/styled.esm.js": "./dist/styled.browser.esm.js"
},
"preconstruct": {
"umdName": "emotionStyled",
"entrypoints": [
".",
"base"
]
}
}