forked from viodotcom/stylis-rtl
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "stylis-plugin-rtl",
"version": "2.1.1",
"description": "Fork of stylis-rtl, uses cssjanus under the hood to flip style orientations for RTL",
"module": "dist/stylis-rtl.js",
"main": "dist/cjs/stylis-rtl.js",
"types": "dist/stylis-rtl.d.ts",
"scripts": {
"build": "tsc && tsc --module commonjs --outDir dist/cjs",
"prepublishOnly": "yarn build",
"test": "jest"
},
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/styled-components/stylis-plugin-rtl.git"
},
"keywords": [
"rtl",
"bidi",
"stylis",
"emotion",
"emotion-js",
"css",
"preprocessor",
"styled-components"
],
"author": "Jop de Klein",
"contributors": [
"Evan Jacobs <[email protected]> (https://probablyup.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/styled-components/stylis-plugin-rtl/issues"
},
"homepage": "https://github.com/styled-components/stylis-plugin-rtl#readme",
"peerDependencies": {
"stylis": "4.x"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/stylis": "^4.0.2",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"stylis": "^4.0.13",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"cssjanus": "^2.0.1"
}
}