@alviere/ui 0.12.0 → 0.13.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alviere/ui",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "Alviere JS Svelte UI Components - Lightweight payment components",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -34,7 +34,7 @@
34
34
  "dependencies": {
35
35
  "lucide": "^0.544.0",
36
36
  "svelte-preprocess": "^6.0.3",
37
- "@alviere/core": "0.12.0"
37
+ "@alviere/core": "0.13.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@axe-core/playwright": "^4.11.1",
@@ -94,12 +94,13 @@
94
94
  "test:ui": "vitest --ui",
95
95
  "test:run": "vitest run",
96
96
  "test:coverage": "vitest run --coverage",
97
- "a11y:install:browsers": "playwright install chromium",
97
+ "a11y:install:pa11y-browser": "node scripts/install-pa11y-browser.cjs",
98
+ "a11y:install:browsers": "playwright install chromium && pnpm a11y:install:pa11y-browser",
98
99
  "a11y:build": "pnpm build:web-components",
99
100
  "a11y:serve": "node scripts/serve-static-a11y.js",
100
101
  "a11y:test:unit": "vitest run test/a11y/components.a11y.test.ts --reporter=default --reporter=json --outputFile=coverage/a11y/unit/vitest-results.json",
101
102
  "a11y:test:e2e": "playwright test --config a11y/playwright.config.ts",
102
- "a11y:audit:pa11y": "pa11y-ci --config .pa11yci.json",
103
+ "a11y:audit:pa11y": "pnpm a11y:install:pa11y-browser && pa11y-ci --config .pa11yci.json",
103
104
  "a11y:audit:lighthouse": "lhci autorun --config=./lighthouserc.json",
104
105
  "a11y:report:generate": "node scripts/generate-a11y-report.js",
105
106
  "a11y:run:unit": "pnpm a11y:build && pnpm a11y:test:unit",