forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 824 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
{
"name": "@clerk/tailwindcss-transformer",
"version": "0.1.1",
"private": true,
"license": "MIT",
"author": {
"name": "Clerk, Inc.",
"email": "support@clerk.com",
"url": "git+https://github.com/clerk/javascript.git"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest"
},
"dependencies": {
"@babel/parser": "^7.24.5",
"cssnano": "7.0.5",
"postcss": "^8.4.38",
"postcss-value-parser": "^4.2.0",
"recast": "^0.23.7",
"tailwindcss": "^3.4.3",
"tslib": "2.4.1"
}
}