@functionalcms/svelte-components 4.8.9 → 4.8.11

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": "@functionalcms/svelte-components",
3
- "version": "4.8.9",
3
+ "version": "4.8.11",
4
4
  "watch": {
5
5
  "build": {
6
6
  "patterns": [
@@ -53,6 +53,7 @@
53
53
  "eslint": "^9.7.0",
54
54
  "eslint-config-prettier": "^9.1.0",
55
55
  "eslint-plugin-svelte": "^2.36.0",
56
+ "npm-watch": "^0.13.0",
56
57
  "prettier": "^3.3.2",
57
58
  "prettier-plugin-svelte": "^3.2.6",
58
59
  "publint": "^0.3.8",
@@ -63,14 +64,13 @@
63
64
  "typescript": "^5.0.0",
64
65
  "typescript-eslint": "^8.0.0",
65
66
  "vite": "^5.4.11",
66
- "npm-watch": "^0.13.0",
67
67
  "zod": "^3.24.1"
68
68
  },
69
69
  "dependencies": {
70
- "ioredis": "^5.4.2",
71
70
  "embla-carousel-svelte": "^8.5.2",
71
+ "ioredis": "^5.4.2",
72
72
  "marked": "^15.0.6",
73
- "oauth4webapi": "^3.1.4"
73
+ "oauth4webapi": "^3.1.4"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "@sveltejs/kit": "^2.15.3",
@@ -1,7 +0,0 @@
1
- export declare const COMMON_MIME_TYPES: Map<string, string>;
2
- export declare function toFileWithPath(file: FileWithPath, path?: string, h?: FileSystemHandle): FileWithPath;
3
- export interface FileWithPath extends File {
4
- readonly path?: string;
5
- readonly handle?: FileSystemFileHandle;
6
- readonly relativePath?: string;
7
- }