-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
118 lines (118 loc) · 3.39 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "unocss-preset-weapp",
"version": "65.4.1",
"type": "module",
"packageManager": "[email protected]",
"description": "the unocss preset for wechat miniprogram (uniapp, taro)",
"author": "MellowCo",
"license": "MIT",
"homepage": "https://github.com/MellowCo/unocss-prest-weapp",
"repository": {
"type": "git",
"url": "https://github.com/MellowCo/unocss-prest-weapp"
},
"bugs": {
"url": "https://github.com/MellowCo/unocss-prest-weapp/issues"
},
"keywords": [
"unocss",
"unocss-preset",
"wechat",
"uniapp",
"taro",
"miniprogram"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./theme": {
"types": "./dist/theme.d.ts",
"require": "./dist/theme.cjs",
"import": "./dist/theme.mjs"
},
"./variants": {
"types": "./dist/variants.d.ts",
"require": "./dist/variants.cjs",
"import": "./dist/variants.mjs"
},
"./rules": {
"types": "./dist/rules.d.ts",
"require": "./dist/rules.cjs",
"import": "./dist/rules.mjs"
},
"./colors": {
"types": "./dist/colors.d.ts",
"require": "./dist/colors.cjs",
"import": "./dist/colors.mjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"require": "./dist/utils.cjs",
"import": "./dist/utils.mjs"
},
"./transformer": {
"types": "./dist/transformer.d.ts",
"require": "./dist/transformer.cjs",
"import": "./dist/transformer.mjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts",
"*.css"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"test": "vitest",
"test:debug": "vitest debug",
"taze": "taze minor -wI",
"uniapp3": "npm -C examples/uniapp_vue3 run dev:mp-weixin",
"uniapp3:h5": "npm run build && npm -C examples/uniapp_vue3 run dev:h5",
"uniapp2": "nr build &&npm -C examples/uniapp_vue2 run dev:mp-weixin",
"uniapp2:h5": "nr build &&npm -C examples/uniapp_vue2 run dev:h5",
"taro": "nr build &&npm -C examples/taro_react run dev:weapp",
"taro:h5": "nr build &&npm -C examples/taro_react run dev:h5",
"taro_vue2": "nr build &&npm -C examples/taro_vue2 run dev:weapp",
"taro_vue2:h5": "nr build &&npm -C examples/taro_vue2 run dev:h5",
"taro_vue3": "nr build &&npm -C examples/taro_vue3 run dev:weapp",
"taro_vue3:h5": "nr build &&npm -C examples/taro_vue3 run dev:h5",
"prepublishOnly": "nr build",
"release": "bumpp",
"lint": "eslint --cache . -f mo",
"lint:fix": "nr lint --fix"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.4",
"@unocss/core": "^65.4.2",
"@unocss/extractor-arbitrary-variants": "^65.4.2",
"@unocss/rule-utils": "^65.4.2",
"unplugin-attributify-to-class": "^0.2.5",
"unplugin-transform-class": "^0.5.3"
},
"devDependencies": {
"@antfu/eslint-config": "3.14.0",
"@antfu/ni": "^23.2.0",
"@types/node": "^22.10.7",
"@unocss/autocomplete": "^65.4.2",
"bumpp": "^9.10.1",
"eslint": "^9.18.0",
"eslint-formatter-mo": "^2.0.1",
"magic-string": "^0.30.17",
"msw": "1.0.1",
"std-env": "^3.8.0",
"taze": "^18.2.0",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vite": "^6.0.7",
"vitest": "^3.0.2"
}
}