forked from Super-Lollipop/unocss-preset-daisyui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "unocss-preset-daisyui",
"version": "0.0.3",
"author": "",
"license": "MIT",
"description": "UnoCSS preset for daisyUI",
"homepage": "https://github.com/Super-Lollipop/unocss-preset-daisyui",
"repository": {
"type": "git",
"url": "https://github.com/Super-Lollipop/unocss-preset-daisyui"
},
"bugs": {
"url": "https://github.com/Super-Lollipop/unocss-preset-daisyui/issues"
},
"keywords": [
"unocss",
"daisyui",
"unocss-preset"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"play": "npm -C playground run dev",
"release": "bumpp && pnpm build && pnpm publish"
},
"devDependencies": {
"@antfu/eslint-config": "^2.3.4",
"@types/node": "^20.10.3",
"@types/postcss-js": "^4.0.4",
"bumpp": "^9.2.0",
"eslint": "^8.55.0",
"typescript": "^5.3.2",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"daisyui": ">=4.0.0",
"unocss": ">=0.58.0"
},
"dependencies": {
"autoprefixer": "^10.4.16",
"unocss-preset-component": "^0.0.4"
}
}