forked from pcdotfan/taro-plugin-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "taro-plugin-tailwind",
"version": "1.2.8",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run prod",
"dev": "tsc -w",
"prod": "tsc",
"clean": "rimraf dist",
"release": "release-it"
},
"files": [
"src",
"config",
"dist",
"index.js",
"package.json"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pcdotfan/taro-plugin-tailwind.git"
},
"author": "pcdotfan",
"license": "MIT",
"bugs": {
"url": "https://github.com/pcdotfan/taro-plugin-tailwind/issues"
},
"homepage": "https://github.com/pcdotfan/taro-plugin-tailwind#readme",
"devDependencies": {
"@tarojs/service": "^3.4.2",
"@tarojs/taro": "^3.4.2",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/webpack-dev-server": "^4.7.2",
"color-string": "^1.9.0",
"release-it": "^14.12.5",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"dependencies": {
"@windicss/plugin-utils": "^1.8.1",
"postcss-loader": "^4.3.0",
"postcss-selector-replace": "^1.0.2",
"windicss-webpack-plugin": "^1.6.6"
},
"hooks": {
"after:bump": "npm run build"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"skipChecks": true
}
}
}