-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "tailwind-styled-components",
"version": "2.1.8",
"keywords": [
"react",
"css-in-js",
"styled-components",
"css",
"tailwindcss",
"tailwind",
"tailwindcss-plugin",
"tailwind-css",
"tailwindcss-ui"
],
"description": "Create tailwind css react components like styled components with classes name on multiple lines",
"main": "dist/tailwind-styled-components.cjs.js",
"module": "dist/tailwind-styled-components.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "node esbuild.js && tsc -p tsconfig.types.json",
"prebuild": "yarn run clean",
"postbuild": "yarn run test",
"clean": "rimraf dist",
"pretest": "jest --clearCache",
"posttest": "yarn run test:types",
"test": "jest",
"test:types": "tsc -p ./src/typing-tests/tsconfig.json",
"prepublishOnly": "npm run clean && npm run build"
},
"homepage": "https://github.com/MathiasGilson/tailwind-styled-component",
"bugs": {
"url": "https://github.com/MathiasGilson/tailwind-styled-component/issues"
},
"author": "@MathiasGilson",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@types/jest": "^28.1.4",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"esbuild": "^0.14.11",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.0.0",
"jest-environment-jsdom": "^28.1.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"dependencies": {
"tailwind-merge": "^1.3.0"
}
}