-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "umi-plugin-tailwindcss",
"version": "4.0.0",
"description": "umi@3.0 plugin for tailwindcss",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup --config",
"pre-publish": "yarn build && npm version patch"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/dewfall123/umi-plugin-tailwindcss.git"
},
"keywords": [
"umi",
"plugin",
"tailwind",
"tailwindcss"
],
"authors": [
"zfh"
],
"license": "MIT",
"bugs": "https://github.com/dewfall123/umi-plugin-tailwindcss/issues",
"homepage": "https://github.com/dewfall123/umi-plugin-tailwindcss",
"peerDependencies": {
"umi": "3.x"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"autoprefixer": "9.x",
"tailwindcss": "latest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"rollup": "^2.3.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript2": "^0.27.0",
"typescript": "^3.8.3",
"umi": "3.0.14"
}
}