@wyxos/vibe 4.0.0 → 4.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 +2 -0
- package/package.json +10 -4
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wyxos/vibe",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "An initializable Vue 3 media feed with virtualized masonry and reel layouts.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -36,8 +36,12 @@
|
|
|
36
36
|
"lib"
|
|
37
37
|
],
|
|
38
38
|
"scripts": {
|
|
39
|
-
"dev": "
|
|
40
|
-
"
|
|
39
|
+
"dev": "concurrently --kill-others --names demo,docs \"npm:dev:demo\" \"npm:docs:dev\"",
|
|
40
|
+
"dev:demo": "vite --host 127.0.0.1 --port 5173 --strictPort",
|
|
41
|
+
"docs:build": "vitepress build docs",
|
|
42
|
+
"docs:dev": "vitepress dev docs --host 127.0.0.1 --port 5174 --strictPort",
|
|
43
|
+
"docs:preview": "vitepress preview docs",
|
|
44
|
+
"build": "vite build && vitepress build docs && node scripts/write-cname.mjs",
|
|
41
45
|
"build:lib": "vite build --config vite.config.lib.ts && npm run build:types",
|
|
42
46
|
"build:types": "vue-tsc -p tsconfig.lib.json",
|
|
43
47
|
"check:demo-dist": "node scripts/check-demo-dist.mjs",
|
|
@@ -70,14 +74,15 @@
|
|
|
70
74
|
}
|
|
71
75
|
},
|
|
72
76
|
"devDependencies": {
|
|
73
|
-
"@playwright/test": "^1.59.1",
|
|
74
77
|
"@eslint/js": "^9.37.0",
|
|
78
|
+
"@playwright/test": "^1.59.1",
|
|
75
79
|
"@tailwindcss/vite": "^4.1.18",
|
|
76
80
|
"@types/node": "^24.12.0",
|
|
77
81
|
"@typescript-eslint/eslint-plugin": "^8.33.0",
|
|
78
82
|
"@typescript-eslint/parser": "^8.33.0",
|
|
79
83
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
80
84
|
"@vue/test-utils": "^2.4.6",
|
|
85
|
+
"concurrently": "^10.0.3",
|
|
81
86
|
"eslint": "^9.37.0",
|
|
82
87
|
"eslint-plugin-vue": "^10.5.1",
|
|
83
88
|
"globals": "^16.4.0",
|
|
@@ -85,6 +90,7 @@
|
|
|
85
90
|
"tailwindcss": "^4.1.18",
|
|
86
91
|
"typescript": "~5.9.3",
|
|
87
92
|
"vite": "^8.0.1",
|
|
93
|
+
"vitepress": "^1.6.4",
|
|
88
94
|
"vitest": "^4.1.2",
|
|
89
95
|
"vue": "^3.5.30",
|
|
90
96
|
"vue-eslint-parser": "^10.0.0",
|