@vuetkit/core 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
+ # Hooks
2
+
3
+ ## Description
4
+
5
+ Collection of business development hooks for Vue3 projects.
@@ -0,0 +1,4 @@
1
+ //#region src/demo/useDemo/index.d.ts
2
+ declare function useDemo(): string;
3
+ //#endregion
4
+ export { useDemo };
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ //#region src/demo/useDemo/index.ts
2
+ function useDemo() {
3
+ return "hello useDemo";
4
+ }
5
+ //#endregion
6
+ export { useDemo };
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@vuetkit/core",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "description": "Collection of business development hooks for Vue3 projects",
6
+ "author": "Kalu5",
7
+ "license": "MIT",
8
+ "keywords": [
9
+ "vue3",
10
+ "hooks"
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
+ }