forked from kawarimidoll/vuepress-plugin-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
63
64
65
{
"name": "@jinhang/vuepress-plugin-tailwind",
"description": "A VuePress plugin to use tailwindcss easily",
"version": "4.0.4",
"main": "index.js",
"keywords": [
"vuepress",
"plugin",
"tailwind",
"purgecss",
"style",
"css"
],
"author": {
"name": "jinhang",
"email": "jinhang87@163.com",
"url": "https://github.com/jinhang87"
},
"homepage": "https://vuepress-plugin-tailwind.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/jinhang87/vuepress-plugin-tailwind.git"
},
"bugs": "https://github.com/jinhang87/vuepress-plugin-tailwind/issues",
"files": [
"index.js",
"README.md"
],
"license": "MIT",
"scripts": {
"build": "vuepress build docs",
"clean": "rimraf docs/.vuepress/dist",
"dev": "vuepress dev docs",
"lint": "eslint",
"lint:fix": "eslint --fix",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"test": "sh scripts/test.sh",
"deploy": "sh scripts/deploy.sh"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{js,vue,json,md}": "prettier --write"
},
"dependencies": {
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jinhang/vuepress-plugin-cnzz": "^1.0.0-beta.3",
"@vuepress/plugin-google-analytics": "^2.0.0-beta.27",
"@vuepress/plugin-register-components": "^2.0.0-beta.27",
"eslint": "^8.1.0",
"eslint-plugin-vue": "^8.0.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"pinst": "^2.1.6",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"vuepress": "^2.0.0-beta.26"
}
}