@vuetkit/components 0.0.1

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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Components
2
+
3
+ ## Description
4
+
5
+ Collection of business development components for Vue3 projects.
@@ -0,0 +1,4 @@
1
+ //#region src/form/select/index.d.ts
2
+ declare function test(): string;
3
+ //#endregion
4
+ export { test };
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ //#region src/form/select/index.ts
2
+ function test() {
3
+ return "test";
4
+ }
5
+ //#endregion
6
+ export { test };
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@vuetkit/components",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "description": "Collection of business development components for Vue3 projects",
6
+ "author": "Kalu5",
7
+ "license": "MIT",
8
+ "keywords": [
9
+ "vue3",
10
+ "components"
11
+ ],
12
+ "main": "dist/index.js",
13
+ "module": "dist/index.mjs",
14
+ "types": "dist/index.d.ts",
15
+ "files": [
16
+ "README.md",
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsdown --config-loader tsx"
21
+ }
22
+ }