@elmethis/react 0.9.0 → 0.10.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 +14 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/react",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "React component library for elmethis.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -55,14 +55,14 @@
55
55
  "shiki": "^4.2.0",
56
56
  "usehooks-ts": "^3.1.1",
57
57
  "zod": "^3",
58
- "@elmethis/core": "^0.13.0"
58
+ "@elmethis/core": "^0.14.0"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@babel/core": "^7.29.7",
62
62
  "@eslint/js": "latest",
63
63
  "@rolldown/plugin-babel": "^0.2.3",
64
- "@storybook/addon-docs": "^10.4.4",
65
- "@storybook/react-vite": "^10.4.4",
64
+ "@storybook/addon-docs": "^10.4.6",
65
+ "@storybook/react-vite": "^10.4.6",
66
66
  "@testing-library/jest-dom": "^6.9.0",
67
67
  "@testing-library/react": "^16.3.0",
68
68
  "@types/babel__core": "^7.20.5",
@@ -72,26 +72,27 @@
72
72
  "@types/react-dom": "^19.2.3",
73
73
  "@vitejs/plugin-react": "^6.0.2",
74
74
  "@vitest/browser-playwright": "^4.1.8",
75
+ "@vitest/coverage-v8": "^4.1.8",
75
76
  "@vitest/ui": "^4.1.8",
76
77
  "babel-plugin-react-compiler": "^1.0.0",
77
78
  "concurrently": "^10.0.3",
78
- "eslint": "^10.4.1",
79
+ "eslint": "^10.5.0",
79
80
  "eslint-plugin-react-hooks": "^7.1.1",
80
- "eslint-plugin-react-refresh": "^0.5.2",
81
+ "eslint-plugin-react-refresh": "^0.5.3",
81
82
  "globals": "^17.6.0",
82
- "happy-dom": "^20.10.2",
83
+ "happy-dom": "^20.10.4",
83
84
  "playwright": "^1.60.0",
84
85
  "prettier": "3.8.4",
85
86
  "react": "^19.2.7",
86
87
  "react-dom": "^19.2.7",
87
- "storybook": "^10.4.4",
88
+ "storybook": "^10.4.6",
88
89
  "stylelint": "^17.13.0",
89
90
  "stylelint-config-css-modules": "^4.6.0",
90
91
  "stylelint-config-standard": "^40.0.0",
91
92
  "stylelint-value-no-unknown-custom-properties": "^6.1.1",
92
93
  "tsx": "^4.22.4",
93
94
  "typescript": "~6.0.3",
94
- "typescript-eslint": "^8.61.0",
95
+ "typescript-eslint": "^8.61.1",
95
96
  "vite": "^8.0.4",
96
97
  "vitest": "^4.1.8",
97
98
  "vitest-browser-react": "^2.2.0"
@@ -109,9 +110,11 @@
109
110
  "lint.css": "stylelint \"src/**/*.css\"",
110
111
  "test": "pnpm run test.unit && pnpm run test.browser",
111
112
  "test.unit": "vitest --run",
113
+ "test.coverage": "vitest --run --coverage",
112
114
  "test.browser": "vitest --run --config vitest.browser.config.ts",
115
+ "test.coverage.browser": "vitest --run --coverage --config vitest.browser.config.ts",
113
116
  "test.build": "pnpm run build && pnpm run build-storybook",
114
- "check": "concurrently -g \"pnpm:fmt.check\" \"pnpm:lint\" \"pnpm:lint.css\" \"pnpm:build.types\" \"pnpm:test.unit\"",
115
- "check.ci": "concurrently -g \"pnpm:check\" \"pnpm:test.build\" \"pnpm:test.browser\""
117
+ "check": "concurrently -g \"pnpm:fmt.check\" \"pnpm:lint\" \"pnpm:lint.css\" \"pnpm:build.types\"",
118
+ "check.ci": "concurrently -g \"pnpm:check\" \"pnpm:test.build\" \"pnpm:test.unit\" \"pnpm:test.browser\""
116
119
  }
117
120
  }