aural-ui 4.1.0 → 4.2.0
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 +8 -1
- package/dist/index.cjs +90 -90
- package/dist/index.js +90 -90
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aural-ui",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A modern CLI toolkit for seamlessly integrating customizable UI components into React project. Quickly scaffold, add, and manage production-ready components with minimal configuration.",
|
|
6
6
|
"publishConfig": {
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"prepublishOnly": "NODE_ENV=production npm run build",
|
|
29
29
|
"start": "node dist/index.js",
|
|
30
30
|
"test": "jest",
|
|
31
|
+
"test:node": "vitest run --project node",
|
|
31
32
|
"version-packages": "changeset version --version",
|
|
32
33
|
"release": "changeset publish",
|
|
33
34
|
"theme-storybook": "tsx -r tsconfig-paths/register src/core/services/theme-storybook.ts",
|
|
@@ -62,18 +63,20 @@
|
|
|
62
63
|
},
|
|
63
64
|
"homepage": "https://github.com/Pocket-Fm/aural-ui#readme",
|
|
64
65
|
"dependencies": {
|
|
66
|
+
"@modelcontextprotocol/sdk": "^1.27.0",
|
|
65
67
|
"chalk": "^4.1.2",
|
|
66
68
|
"cli-progress": "^3.12.0",
|
|
67
69
|
"commander": "^9.4.0",
|
|
70
|
+
"exceljs": "^4.4.0",
|
|
68
71
|
"figlet": "^1.8.1",
|
|
69
72
|
"fs-extra": "^10.1.0",
|
|
70
73
|
"glob": "^8.0.3",
|
|
71
74
|
"handlebars": "^4.7.7",
|
|
72
75
|
"inquirer": "^8.2.4",
|
|
76
|
+
"jsonwebtoken": "^9.0.3",
|
|
73
77
|
"ora": "^5.4.1",
|
|
74
|
-
"vaul": "^1.1.2",
|
|
75
|
-
"@modelcontextprotocol/sdk": "^1.27.0",
|
|
76
78
|
"tsx": "^4.21.0",
|
|
79
|
+
"vaul": "^1.1.2",
|
|
77
80
|
"zod": "^3.25.32"
|
|
78
81
|
},
|
|
79
82
|
"devDependencies": {
|
|
@@ -106,10 +109,12 @@
|
|
|
106
109
|
"@storybook/react-vite": "^10.2.0",
|
|
107
110
|
"@tailwindcss/vite": "^4.1.4",
|
|
108
111
|
"@types/cli-progress": "^3.11.6",
|
|
112
|
+
"@types/express": "^5.0.6",
|
|
109
113
|
"@types/figlet": "^1.7.0",
|
|
110
114
|
"@types/fs-extra": "^9.0.13",
|
|
111
115
|
"@types/glob": "^8.0.0",
|
|
112
116
|
"@types/inquirer": "^8.2.5",
|
|
117
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
113
118
|
"@types/node": "^18.11.9",
|
|
114
119
|
"@types/react": "^19.1.2",
|
|
115
120
|
"@typescript-eslint/eslint-plugin": "^8.32.0",
|