-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 990 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 990 Bytes
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
{
"name": "react-tailwind-quickstyle",
"version": "0.11.0",
"description": "A utility function to create styled React components with Tailwind CSS with less boilerplate",
"main": "./dist/index.js",
"homepage": "https://github.com/RubinJhand/react-tailwind-quickstyle#readme",
"bugs": {
"url": "https://github.com/RubinJhand/react-tailwind-quickstyle/issues"
},
"repository": "github:RubinJhand/react-tailwind-quickstyle",
"author": "Rubin Jhand",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"keywords": [
"typescript",
"react",
"tailwind",
"styled"
],
"files": [
"dist/",
"src/"
],
"devDependencies": {
"typescript": "^4.5.2",
"@types/react": "17.0.35",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwindcss": "^2.2.19"
},
"peerDependencies": {
"react": ">=17.0.2",
"tailwindcss": "^2.2.19"
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}