-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "tailwind-variant.macro",
"version": "0.0.2",
"description": "A Babel Macro that apply screen / variant to multiple Tailwind utility classes",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"files": [
"dist",
"index.js",
"index.d.ts"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@babel/traverse": "7.16.3",
"@babel/types": "7.16.0",
"@types/babel-plugin-macros": "2.8.5",
"@types/babel-plugin-tester": "9.0.4",
"@types/babel__core": "7.1.15",
"@types/babel__traverse": "7.14.2",
"@types/node": "16.11.11",
"babel-plugin-tester": "10.1.0",
"jest": "27.1.0",
"postcss": "8.3.11",
"prettier": "2.3.2",
"tailwindcss": "2.2.2",
"ts-jest": "27.0.4",
"typescript": "4.3.5"
},
"dependencies": {
"@types/tailwindcss": "^2.0.6",
"babel-plugin-macros": "^3.1.0"
},
"peerDependencies": {
"tailwindcss": "^2.2.2"
},
"resolutions": {
"@babel/types": "7.16.0",
"@types/babel__traverse": "7.14.2"
}
}