-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "twvg",
"version": "0.0.3",
"license": "MIT",
"type": "module",
"keywords": [
"tailwind",
"tailwindcss",
"variant"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./tailwind": {
"import": "./dist/tailwind.js",
"require": "./dist/tailwind.cjs",
"types": "./dist/tailwind.d.ts"
},
"./vite": {
"import": "./dist/vite.js",
"require": "./dist/vite.cjs",
"types": "./dist/vite.d.ts"
}
},
"typesVersions": {
"*": {
"tailwind": [
"./dist/tailwind.d.ts"
],
"vite": [
"./dist/vite.d.ts"
]
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublish": "tsc && tsup",
"build": "tsup"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/generator": "^7.21.5",
"@babel/parser": "^7.21.5",
"@babel/traverse": "^7.21.5",
"@babel/types": "^7.21.5",
"@types/babel-traverse": "^6.25.7",
"tsup": "^6.7.0",
"typescript": "^5.0.2",
"unplugin": "^1.3.1",
"vitest": "^0.31.0"
}
}