@elmethis/vue 0.7.0 → 0.8.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.
Files changed (1) hide show
  1. package/package.json +13 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/vue",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Vue 3 component library for elmethis.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -58,32 +58,33 @@
58
58
  "marked": "^18.0.5",
59
59
  "shiki": "^4.2.0",
60
60
  "zod": "^3",
61
- "@elmethis/core": "^0.13.0"
61
+ "@elmethis/core": "^0.14.0"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@eslint/js": "latest",
65
- "@storybook/addon-docs": "^10.4.4",
66
- "@storybook/vue3-vite": "^10.4.4",
65
+ "@storybook/addon-docs": "^10.4.6",
66
+ "@storybook/vue3-vite": "^10.4.6",
67
67
  "@types/katex": "^0.16.8",
68
68
  "@types/node": "^25.7.0",
69
69
  "@vitejs/plugin-vue": "^6.0.7",
70
70
  "@vitejs/plugin-vue-jsx": "^5.1.5",
71
71
  "@vitest/browser-playwright": "^4.1.8",
72
+ "@vitest/coverage-v8": "^4.1.8",
72
73
  "@vitest/ui": "^4.1.8",
73
74
  "@vue/test-utils": "^2.4.11",
74
75
  "concurrently": "^10.0.3",
75
- "eslint": "^10.4.1",
76
+ "eslint": "^10.5.0",
76
77
  "globals": "^17.6.0",
77
- "happy-dom": "^20.10.2",
78
+ "happy-dom": "^20.10.4",
78
79
  "playwright": "^1.60.0",
79
80
  "prettier": "3.8.4",
80
- "storybook": "^10.4.4",
81
+ "storybook": "^10.4.6",
81
82
  "stylelint": "^17.13.0",
82
83
  "stylelint-config-css-modules": "^4.6.0",
83
84
  "stylelint-config-standard": "^40.0.0",
84
85
  "stylelint-value-no-unknown-custom-properties": "^6.1.1",
85
86
  "typescript": "~6.0.3",
86
- "typescript-eslint": "^8.61.0",
87
+ "typescript-eslint": "^8.61.1",
87
88
  "vite": "^8.0.4",
88
89
  "vitest": "^4.1.8",
89
90
  "vitest-browser-vue": "^2.1.0",
@@ -102,9 +103,11 @@
102
103
  "lint.css": "stylelint \"src/**/*.css\"",
103
104
  "test": "pnpm run test.unit && pnpm run test.browser",
104
105
  "test.unit": "vitest --run",
106
+ "test.coverage": "vitest --run --coverage",
105
107
  "test.browser": "vitest --run --config vitest.browser.config.ts",
108
+ "test.coverage.browser": "vitest --run --coverage --config vitest.browser.config.ts",
106
109
  "test.build": "pnpm run build && pnpm run build-storybook",
107
- "check": "concurrently -g \"pnpm:fmt.check\" \"pnpm:lint\" \"pnpm:lint.css\" \"pnpm:build.types\" \"pnpm:test.unit\"",
108
- "check.ci": "concurrently -g \"pnpm:check\" \"pnpm:test.build\" \"pnpm:test.browser\""
110
+ "check": "concurrently -g \"pnpm:fmt.check\" \"pnpm:lint\" \"pnpm:lint.css\" \"pnpm:build.types\"",
111
+ "check.ci": "concurrently -g \"pnpm:check\" \"pnpm:test.build\" \"pnpm:test.unit\" \"pnpm:test.browser\""
109
112
  }
110
113
  }