@hkdigital/lib-sveltekit 0.0.83 → 0.0.84

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.
@@ -1,8 +1,5 @@
1
1
 
2
2
 
3
- // Reference the JSDoc types (doesn't work?)
4
- // export type ImageVariant = import('./imagetools.js').ImageVariant;
5
-
6
3
  interface ImageVariant {
7
4
  src: string;
8
5
  width?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hkdigital/lib-sveltekit",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "author": "Jens Kleinhout, HKdigital (https://hkdigital.nl)",
5
5
  "license": "ISC",
6
6
  "repository": {
@@ -65,18 +65,18 @@
65
65
  "prettier": "^3.4.2",
66
66
  "prettier-plugin-svelte": "^3.3.2",
67
67
  "prettier-plugin-tailwindcss": "^0.6.9",
68
- "publint": "^0.2.12",
68
+ "publint": "^0.3.0",
69
69
  "standardized-audio-context-mock": "^9.7.15",
70
- "svelte": "^5.16.0",
71
- "svelte-check": "^4.1.1",
70
+ "svelte": "^5.17.3",
71
+ "svelte-check": "^4.1.3",
72
72
  "tailwindcss": "^3.4.17",
73
- "typescript": "^5.7.2",
74
- "vite": "^6.0.5",
73
+ "typescript": "^5.7.3",
74
+ "vite": "^6.0.7",
75
75
  "vitest": "^2.1.8"
76
76
  },
77
77
  "dependencies": {
78
- "@sveltejs/kit": "^2.15.0",
79
- "runed": "^0.22.0",
78
+ "@sveltejs/kit": "^2.15.2",
79
+ "runed": "^0.23.0",
80
80
  "valibot": "^0.42.1",
81
81
  "zod": "^3.24.1"
82
82
  }
@@ -1,8 +0,0 @@
1
- /**
2
- * @typedef {Object} ImageVariant
3
- * @property {string} src - URL of the image
4
- * @property {number} width - Width of the image
5
- * @property {number} height - Height of the image
6
- */
7
-
8
- export default {};