@imaginario27/air-ui-utils 1.0.0 → 1.0.2
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 +48 -0
- package/package.json +3 -8
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# @imaginario27/air-ui-utils
|
|
2
|
+
|
|
3
|
+
Utility package containing helper functions and reusable logic used across the Air UI ecosystem. Designed for Vue and Nuxt applications with TypeScript support.
|
|
4
|
+
|
|
5
|
+
Documentation: [https://air-ui.netlify.app/](https://air-ui.netlify.app/)
|
|
6
|
+
Repository: [https://github.com/imaginario27/air-ui](https://github.com/imaginario27/air-ui)
|
|
7
|
+
|
|
8
|
+
## Features
|
|
9
|
+
|
|
10
|
+
* Utility functions and composables for Vue and Nuxt
|
|
11
|
+
* TypeScript-first design
|
|
12
|
+
* Modular and reusable logic
|
|
13
|
+
* Compatible with Nuxt auto-imports
|
|
14
|
+
* No UI components included
|
|
15
|
+
* Helper utilities for tasks such as data formatting, PDF generation, routing helpers, and more
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
Install using npm:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install @imaginario27/air-ui-utils
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Using pnpm:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pnpm add @imaginario27/air-ui-utils
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Using yarn:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
yarn add @imaginario27/air-ui-utils
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Testing
|
|
38
|
+
|
|
39
|
+
This package uses the following tools for testing:
|
|
40
|
+
|
|
41
|
+
* Vitest
|
|
42
|
+
* Happy DOM
|
|
43
|
+
|
|
44
|
+
Run tests with:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm run test
|
|
48
|
+
```
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imaginario27/air-ui-utils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"author": "imaginario27",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"homepage": "https://air-ui.netlify.app/",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|
|
8
9
|
"url": "git+https://github.com/imaginario27/air-ui.git"
|
|
@@ -16,10 +17,7 @@
|
|
|
16
17
|
"generate": "nuxt generate",
|
|
17
18
|
"preview": "nuxt preview",
|
|
18
19
|
"postinstall": "nuxt prepare",
|
|
19
|
-
"test": "vitest"
|
|
20
|
-
"publish:patch": "npm version patch --no-git-tag-version && npm publish",
|
|
21
|
-
"publish:minor": "npm version minor --no-git-tag-version && npm publish",
|
|
22
|
-
"publish:major": "npm version major --no-git-tag-version && npm publish"
|
|
20
|
+
"test": "vitest"
|
|
23
21
|
},
|
|
24
22
|
"dependencies": {
|
|
25
23
|
"eslint": "^9.36.0",
|
|
@@ -30,11 +28,8 @@
|
|
|
30
28
|
"vue-router": "^4.5.1"
|
|
31
29
|
},
|
|
32
30
|
"devDependencies": {
|
|
33
|
-
"@nuxt/test-utils": "^3.19.2",
|
|
34
31
|
"@vitest/coverage-v8": "^3.2.4",
|
|
35
|
-
"@vue/test-utils": "^2.4.6",
|
|
36
32
|
"happy-dom": "^18.0.1",
|
|
37
|
-
"playwright-core": "^1.55.1",
|
|
38
33
|
"prettier": "^3.6.2",
|
|
39
34
|
"ts-node": "^10.9.2",
|
|
40
35
|
"typescript": "^5.9.2",
|