-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "windsock",
"version": "0.8.2",
"description": "Generate React components from Tailwind classes",
"main": "cjs.js",
"module": "index.js",
"scripts": {
"test": "jest",
"build": "rollup --format=cjs --exports named --external clsx,react index.js > cjs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madx/windsock.git"
},
"keywords": [
"react",
"tailwind",
"tailwindcss",
"css-in-js",
"styled-components"
],
"author": "François Vaux <francois@yapok.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/madx/windsock/issues"
},
"homepage": "https://github.com/madx/windsock#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"clsx": "^1.1.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.17.0"
},
"prettier": {
"semi": false
},
"peerDependencies": {
"clsx": "^1.1.0",
"react": "^16.13.1"
}
}