@wyxos/vibe 3.1.14 → 3.1.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wyxos/vibe",
3
- "version": "3.1.14",
3
+ "version": "3.1.16",
4
4
  "description": "A Vue 3 media viewer for large feeds of image, video, audio, and mixed-content items.",
5
5
  "keywords": [
6
6
  "vue",
@@ -40,17 +40,22 @@
40
40
  "build": "vite build && node scripts/write-cname.mjs",
41
41
  "build:lib": "vite build --config vite.config.lib.ts && npm run build:types",
42
42
  "build:types": "vue-tsc -p tsconfig.lib.json",
43
+ "check:demo-dist": "node scripts/check-demo-dist.mjs",
44
+ "check:max-lines": "node scripts/check-max-lines.mjs",
43
45
  "check:package": "node scripts/check-package-shape.mjs",
44
46
  "prepublishOnly": "npm run check && npm run test:unit && npm run build:lib && npm run test:e2e && npm run check:package",
45
47
  "preview": "vite preview",
46
48
  "release": "npx @wyxos/zephyr --type=node",
49
+ "release:verified": "npm run release && npm run verify:published -- --wait",
50
+ "verify:published": "node scripts/verify-published-version.mjs",
47
51
  "test:e2e": "playwright test",
52
+ "test:e2e:built": "npm run build && npm run check:demo-dist && playwright test --config tests/e2e/playwright.built.config.ts",
48
53
  "test:e2e:headed": "playwright test --headed",
49
54
  "test:e2e:install": "playwright install chromium",
50
55
  "test:e2e:ui": "playwright test --ui",
51
56
  "test:unit": "vitest run",
52
57
  "test:unit:watch": "vitest",
53
- "check": "npm run lint && npm run typecheck",
58
+ "check": "npm run lint && npm run typecheck && npm run check:max-lines",
54
59
  "lint": "eslint . --max-warnings 0",
55
60
  "lint:fix": "eslint . --fix",
56
61
  "typecheck": "vue-tsc --noEmit --pretty false"