@larabits/untitled-ui 0.0.0-alpha → 0.0.1-alpha

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
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as Button } from './Button.vue';
File without changes
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as Modal } from './Modal.vue';
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+ (function(n){typeof define=="function"&&define.amd?define(n):n()})(function(){"use strict"});
package/package.json CHANGED
@@ -1,13 +1,42 @@
1
1
  {
2
2
  "name": "@larabits/untitled-ui",
3
- "version": "0.0.0-alpha",
3
+ "version": "0.0.1-alpha",
4
+ "type": "module",
5
+ "files": ["dist"],
6
+ "main": "./dist/untitled-ui.umd.js",
7
+ "module": "./dist/untitled-ui.es.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/untitled-ui.es.js",
11
+ "require": "./dist/untitled-ui.umd.js"
12
+ }
13
+ },
4
14
  "publishConfig": {
5
15
  "access": "public"
6
16
  },
7
17
  "scripts": {
8
- "test": "echo \"Error: no test specified\" && exit 1"
18
+ "build": "vite build",
19
+ "watch": "vite build --watch",
20
+ "storybook": "storybook dev -p 6006",
21
+ "build-storybook": "storybook build"
9
22
  },
10
23
  "author": "Yash Pal <iyashpal.dev@gmail.com>",
11
24
  "license": "MIT",
12
- "description": "Vue 3 UI Library"
25
+ "description": "Vue 3 UI Library",
26
+ "devDependencies": {
27
+ "@chromatic-com/storybook": "^3.2.3",
28
+ "@storybook/addon-essentials": "^8.4.7",
29
+ "@storybook/addon-interactions": "^8.4.7",
30
+ "@storybook/addon-onboarding": "^8.4.7",
31
+ "@storybook/blocks": "^8.4.7",
32
+ "@storybook/test": "^8.4.7",
33
+ "@storybook/vue3": "^8.4.7",
34
+ "@storybook/vue3-vite": "^8.4.7",
35
+ "@types/node": "^22.10.5",
36
+ "@vitejs/plugin-vue": "^5.2.1",
37
+ "storybook": "^8.4.7",
38
+ "vite": "^6.0.7",
39
+ "vite-plugin-dts": "^4.4.0",
40
+ "vue": "^3.5.13"
41
+ }
13
42
  }