centoui 1.0.0-alpha.27 → 1.0.0-alpha.29

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +34 -15
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { CentoUIConfig } from "centoui-cli";
1
+ import { CentoUIConfig, CentoUIConfig as CentoUIConfig$1 } from "centoui-cli";
2
2
 
3
3
  //#region src/index.d.ts
4
4
  /**
@@ -6,6 +6,6 @@ import { CentoUIConfig } from "centoui-cli";
6
6
  * @param config - CentoUI config
7
7
  * @returns CentoUI config
8
8
  */
9
- declare function defineConfig(config: CentoUIConfig): CentoUIConfig;
9
+ declare function defineConfig(config: CentoUIConfig$1): CentoUIConfig$1;
10
10
  //#endregion
11
- export { defineConfig };
11
+ export { type CentoUIConfig, defineConfig };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "type": "module",
4
4
  "description": "Vue components for modern interfaces",
5
5
  "private": false,
6
- "version": "1.0.0-alpha.27",
6
+ "version": "1.0.0-alpha.29",
7
7
  "author": "Favour Emeka <favorodera@gmail.com>",
8
8
  "license": "MIT",
9
9
  "homepage": "https://centoui.vercel.app",
@@ -28,38 +28,57 @@
28
28
  "centoui": "./bin/centoui.js"
29
29
  },
30
30
  "dependencies": {
31
- "centoui-cli": "1.0.0-alpha.27"
32
- },
33
- "peerDependencies": {
34
- "vue": "^3.0.0"
31
+ "centoui-cli": "1.0.0-alpha.29"
35
32
  },
36
33
  "devDependencies": {
37
34
  "@clack/prompts": "^1.2.0",
38
- "@iconify/vue": "^5.0.0",
39
- "@tailwindcss/vite": "^4.3.0",
35
+ "@nuxt/icon": "2.2.2",
40
36
  "@types/fs-extra": "^11.0.4",
41
37
  "@vitejs/plugin-vue": "^6.0.5",
42
38
  "@vitest/ui": "^4.1.5",
43
39
  "@vue/test-utils": "^2.4.8",
44
- "@vueuse/core": "^14.2.1",
45
40
  "fs-extra": "^11.3.4",
46
41
  "happy-dom": "^20.9.0",
47
42
  "pathe": "^2.0.3",
48
- "reka-ui": "^2.9.6",
49
- "tailwind-merge": "^3.5.0",
50
- "tailwind-variants": "^3.2.2",
51
- "tailwindcss": "^4.3.0",
52
43
  "tsdown": "^0.21.7",
53
44
  "tsx": "^4.21.0",
54
- "tw-animate-css": "^1.4.0",
55
45
  "vite": "^8.0.3",
56
46
  "vitest": "^4.1.2",
57
47
  "vitest-axe": "^0.1.0",
58
48
  "vue": "^3.5.31",
59
- "vue-tsc": "^3.2.6"
49
+ "vue-tsc": "^3.2.6",
50
+ "@iconify/vue": "^5.0.0",
51
+ "@tailwindcss/vite": "^4.3.0",
52
+ "tailwind-variants": "^3.2.2",
53
+ "tailwind-merge": "^3.5.0",
54
+ "tw-animate-css": "^1.4.0",
55
+ "tailwindcss": "^4.3.0",
56
+ "reka-ui": "^2.9.6",
57
+ "@vueuse/core": "^14.2.1"
58
+ },
59
+ "peerDependencies": {
60
+ "vue": "^3.5.0",
61
+ "@iconify/vue": "^5.0.0",
62
+ "@tailwindcss/vite": "^4.3.0",
63
+ "tailwind-variants": "^3.2.2",
64
+ "tailwind-merge": "^3.5.0",
65
+ "tw-animate-css": "^1.4.0",
66
+ "tailwindcss": "^4.3.0",
67
+ "reka-ui": "^2.9.6",
68
+ "@vueuse/core": "^14.2.1",
69
+ "@nuxt/icon": "2.2.2"
70
+ },
71
+ "peerDependenciesMeta": {
72
+ "@iconify/vue": {
73
+ "optional": true
74
+ },
75
+ "@nuxt/icon": {
76
+ "optional": true
77
+ }
60
78
  },
61
79
  "engines": {
62
- "node": ">=22.0.0"
80
+ "node": ">=22.0.0",
81
+ "pnpm": ">=11.0.0"
63
82
  },
64
83
  "scripts": {
65
84
  "build:registry": "tsx scripts/build-registry.ts",