-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
91 lines (91 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@dcasia/mini-program-tailwind-webpack-plugin",
"version": "1.5.6",
"description": "让你的小程序用上原汁原味的 Tailwind/Windi CSS",
"keywords": [
"mini-program",
"tailwind",
"tailwindcss",
"windicss",
"wechat",
"taro",
"css",
"postcss",
"uni-app",
"miniprogram",
"weapp",
"atomic-css",
"unocss"
],
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./taro": "./dist/taro.js",
"./universal-handler": "./dist/universal-handler.js",
"./rollup": "./dist/rollup.js"
},
"types": "dist/dts/index.d.ts",
"typesVersions": {
"*": {
"taro": [
"dist/dts/taro/index.d.ts"
],
"universal-handler": [
"dist/dts/universal-handler.d.ts"
],
"rollup": [
"dist/dts/rollup/index.d.ts"
]
}
},
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts --fix",
"build": "rollup --config rollup.config.ts",
"prepare": "npm run build",
"publish": "npm publish --public",
"publish:beta": "npm publish --public --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcasia/mini-program-tailwind.git"
},
"author": "Ryan Wu <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dcasia/mini-program-tailwind/issues"
},
"homepage": "https://github.com/dcasia/mini-program-tailwind#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.1",
"@tarojs/service": "^3.4.9",
"@types/jest": "^27.4.1",
"@types/micromatch": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-digital-creative": "github:dcasia/digital-creative-eslint-plugin",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"rollup": "^2.68.0",
"rollup-plugin-dts": "^4.2.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^2.9.9",
"webpack": "^5.69.1"
},
"dependencies": {
"@babel/core": "^7.17.5",
"@vivaxy/wxml": "^2.1.0",
"micromatch": "^4.0.5",
"postcss": "^8.4.7",
"webpack-sources": "^1.4.3",
"windicss-webpack-plugin": "^1.7.2"
}
}