-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "unocss-preset-mini-variants",
"version": "0.53.3",
"description": "Variants from @unocss/preset-mini",
"author": "Star Lederer <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/StarLederer",
"repository": {
"type": "git",
"url": "git+https://github.com/StarLederer/unocss-preset-mini-variants.git"
},
"bugs": {
"url": "https://github.com/StarLederer/unocss-preset-mini-variants/issues"
},
"keywords": [
"unocss",
"unocss-preset",
"unocss-preset-mini",
"preset-mini",
"variants"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.css"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub"
},
"dependencies": {
"@unocss/config": "^0.55.0",
"@unocss/core": "^0.55.0",
"@unocss/preset-mini": "^0.55.0"
},
"devDependencies": {
"@types/node": "^20.4.6",
"typescript": "^5.1.6",
"unbuild": "^1.2.1"
}
}