@onpe/ui 1.0.19 → 1.0.21

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.
@@ -0,0 +1,2 @@
1
+ export declare function addComponent(componentName: string): Promise<void>;
2
+ //# sourceMappingURL=add.d.ts.map
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "@onpe/ui",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "type": "module",
5
5
  "description": "Librería completa de UI para ONPE - Componentes, Hooks, Utils y Librerías",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.esm.js",
8
8
  "types": "dist/index.d.ts",
9
+ "bin": {
10
+ "onpe-ui": "dist/cli.js"
11
+ },
9
12
  "exports": {
10
13
  ".": {
11
14
  "import": "./dist/index.esm.js",
@@ -110,6 +113,8 @@
110
113
  "typescript": "^5.3.3"
111
114
  },
112
115
  "dependencies": {
113
- "clsx": "^2.0.0"
116
+ "clsx": "^2.0.0",
117
+ "commander": "^11.1.0",
118
+ "fs-extra": "^11.3.1"
114
119
  }
115
120
  }