This repository has been archived by the owner on Aug 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "vite-plugin-tailwind",
"version": "0.0.4",
"description": "vite tailwind plugin with jit compiler enabled",
"main": "dist/index.js",
"workspaces": [
"."
],
"files": [
"dist",
"tailwind.css"
],
"scripts": {
"build-dist": "tsc",
"build": "run-s prebuild build-dist ",
"dev": "tsc -w --incremental",
"lint": "eslint src --ext .ts",
"prebuild": "rimraf dist && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axe-me/vite-plugin-tailwind.git"
},
"keywords": [
"vite",
"vite-plugin",
"tailwind",
"tailwind-jit"
],
"author": "Axe",
"license": "MIT",
"bugs": {
"url": "https://github.com/axe-me/vite-plugin-tailwind/issues"
},
"homepage": "https://github.com/axe-me/vite-plugin-tailwind#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/estree": "^0.0.46",
"@types/node": "^14.14.35",
"@types/tailwindcss": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-plugin-node": "^11.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"dependencies": {
"@rollup/pluginutils": "^4.1.0",
"@tailwindcss/jit": "^0.1.3",
"autoprefixer": "^10.2.5",
"chalk": "^4.1.0",
"debug": "^4.3.1",
"postcss": "^8.2.8",
"postcss-nesting": "^7.0.1",
"tailwind-config-viewer": "^1.5.1",
"tailwindcss": "^2.0.4",
"vite": "^2.1.1"
}
}