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