@macroui/macroui 1.0.30 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +27 -193
- package/functions/addPrefix.js +185 -0
- package/functions/plugin.js +11 -0
- package/functions/pluginOptionsHandler.js +97 -0
- package/functions/themeOrder.js +37 -0
- package/functions/variables.js +29 -0
- package/index.js +61 -0
- package/package.json +40 -73
- package/dist/index.cjs.js +0 -19742
- package/dist/index.es.js +0 -19564
- package/dist/macroui.css +0 -71883
package/package.json
CHANGED
|
@@ -1,82 +1,49 @@
|
|
|
1
1
|
{
|
|
2
|
+
"type": "module",
|
|
2
3
|
"name": "@macroui/macroui",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
4
|
+
"version": "4.0.0",
|
|
5
|
+
"description": "Macroui - Tailwind CSS Component Library",
|
|
6
|
+
"author": "Macroui",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://macroui.com",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://gitee.com/macroui/macroui.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": "https://gitee.com/macroui/macroui/issues",
|
|
5
14
|
"keywords": [
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"element-plus",
|
|
9
|
-
"daisyui",
|
|
10
|
-
"ui",
|
|
11
|
-
"components",
|
|
12
|
-
"ui-library",
|
|
13
|
-
"typescript",
|
|
15
|
+
"macroui",
|
|
16
|
+
"tailwind",
|
|
14
17
|
"tailwindcss",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
18
|
+
"tailwind css",
|
|
19
|
+
"tailwind react",
|
|
20
|
+
"tailwind vue",
|
|
21
|
+
"tailwind plugin",
|
|
22
|
+
"tailwind component",
|
|
23
|
+
"component library",
|
|
24
|
+
"css library"
|
|
17
25
|
],
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"module": "dist/index.es.js",
|
|
22
|
-
"types": "dist/index.d.ts",
|
|
23
|
-
"exports": {
|
|
24
|
-
"./dist/macroui.css": "./dist/macroui.css",
|
|
25
|
-
"./dist/*": "./dist/*",
|
|
26
|
-
"./locale/*": "./dist/locale/*",
|
|
27
|
-
"./styles": "./styles/index.scss",
|
|
28
|
-
"./locale": {
|
|
29
|
-
"import": "./dist/locale/index.js",
|
|
30
|
-
"require": "./dist/locale/index.cjs.js",
|
|
31
|
-
"types": "./dist/locale/index.d.ts"
|
|
32
|
-
},
|
|
33
|
-
".": {
|
|
34
|
-
"import": "./dist/index.es.js",
|
|
35
|
-
"require": "./dist/index.cjs.js",
|
|
36
|
-
"types": "./dist/index.d.ts"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
26
|
+
"main": "./index.js",
|
|
27
|
+
"module": "./index.js",
|
|
28
|
+
"browser": "./daisyui.css",
|
|
39
29
|
"files": [
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
30
|
+
"base",
|
|
31
|
+
"colors",
|
|
32
|
+
"components",
|
|
33
|
+
"functions/addPrefix.js",
|
|
34
|
+
"functions/plugin.js",
|
|
35
|
+
"functions/pluginOptionsHandler.js",
|
|
36
|
+
"functions/themeOrder.js",
|
|
37
|
+
"functions/variables.js",
|
|
38
|
+
"theme",
|
|
39
|
+
"utilities",
|
|
40
|
+
"imports.js",
|
|
41
|
+
"index.js",
|
|
42
|
+
"chunks.css",
|
|
43
|
+
"daisyui.css",
|
|
44
|
+
"themes.css"
|
|
44
45
|
],
|
|
45
46
|
"scripts": {
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
"build": "vite build",
|
|
49
|
-
"build:lib": "vite build --config vite.lib.config.ts",
|
|
50
|
-
"build:all": "node scripts/build-and-copy-locales.js",
|
|
51
|
-
"test": "vitest run tests/unit",
|
|
52
|
-
"test:watch": "vitest tests/unit",
|
|
53
|
-
"test:coverage": "vitest run tests/unit --coverage",
|
|
54
|
-
"test:unit": "vitest run tests/unit",
|
|
55
|
-
"lint": "eslint . --ext .vue,.js,.ts --fix",
|
|
56
|
-
"typecheck": "vue-tsc --noEmit"
|
|
57
|
-
},
|
|
58
|
-
"peerDependencies": {
|
|
59
|
-
"vue": "^3.2.0"
|
|
60
|
-
},
|
|
61
|
-
"dependencies": {
|
|
62
|
-
"@element-plus/icons-vue": "^2.1.0",
|
|
63
|
-
"glob": "^13.0.6"
|
|
64
|
-
},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@vitejs/plugin-vue": "^6.0.7",
|
|
67
|
-
"autoprefixer": "^10.5.0",
|
|
68
|
-
"daisyui": "^4.12.24",
|
|
69
|
-
"postcss": "^8.5.15",
|
|
70
|
-
"sass-embedded": "^1.100.0",
|
|
71
|
-
"tailwindcss": "^4.3.0",
|
|
72
|
-
"vite": "^8.0.14"
|
|
73
|
-
},
|
|
74
|
-
"repository": {
|
|
75
|
-
"type": "git",
|
|
76
|
-
"url": "https://github.com/mobiui/macroui"
|
|
77
|
-
},
|
|
78
|
-
"bugs": {
|
|
79
|
-
"url": "https://github.com/mobiui/macroui/issues"
|
|
80
|
-
},
|
|
81
|
-
"homepage": "https://github.com/mobiui/macroui#readme"
|
|
47
|
+
"build": "node build.js"
|
|
48
|
+
}
|
|
82
49
|
}
|