-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.22 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
{
"version": "0.0.7",
"name": "tailwindcss-vite-plugin",
"license": "MIT",
"description": "Design in Devtools for Tailwind CSS in Vite",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/*"
],
"keywords": [
"Tailwind CSS",
"tailwind",
"Design in Devtools",
"Vite Plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/await-ovo/tailwindcss-webpack-plugin.git",
"directory": "packages/vite-plugin"
},
"bugs": {
"url": "https://github.com/await-ovo/tailwindcss-webpack-plugin/issues"
},
"author": {
"name": "await-ovo",
"email": "13152410380@163.com"
},
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "tsup",
"dev": "pnpm run build --watch"
},
"peerDependencies": {
"vite": "^3 || ^4"
},
"dependencies": {
"postcss": "^8.4.17",
"tailwindcss": "^3.3.1",
"tailwindcss-webpack-plugin-utils": "workspace:*"
},
"devDependencies": {
"@types/tailwindcss": "^3.1.0",
"tsup": "^6.2.3",
"vite": "^4"
}
}