@slidev/client 0.42.7 → 0.42.9

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 (2) hide show
  1. package/package.json +11 -11
  2. package/shim.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slidev/client",
3
- "version": "0.42.7",
3
+ "version": "0.42.9",
4
4
  "description": "Presentation slides for developers",
5
5
  "author": "antfu <anthonyfu117@hotmail.com>",
6
6
  "license": "MIT",
@@ -15,10 +15,10 @@
15
15
  "node": ">=14.0.0"
16
16
  },
17
17
  "dependencies": {
18
- "@antfu/utils": "^0.7.5",
19
- "@unocss/reset": "^0.54.1",
18
+ "@antfu/utils": "^0.7.6",
19
+ "@unocss/reset": "^0.55.0",
20
20
  "@vueuse/core": "^10.3.0",
21
- "@vueuse/head": "^1.1.26",
21
+ "@vueuse/head": "^1.3.1",
22
22
  "@vueuse/math": "^10.3.0",
23
23
  "@vueuse/motion": "^2.0.0",
24
24
  "codemirror": "^5.65.5",
@@ -29,22 +29,22 @@
29
29
  "js-base64": "^3.7.5",
30
30
  "js-yaml": "^4.1.0",
31
31
  "katex": "^0.16.8",
32
- "mermaid": "^10.3.0",
32
+ "mermaid": "^10.3.1",
33
33
  "monaco-editor": "^0.37.1",
34
34
  "nanoid": "^4.0.2",
35
- "prettier": "^3.0.1",
35
+ "prettier": "^3.0.2",
36
36
  "recordrtc": "^5.6.2",
37
37
  "resolve": "^1.22.4",
38
- "unocss": "^0.54.1",
39
- "vite-plugin-windicss": "^1.9.0",
38
+ "unocss": "^0.55.0",
39
+ "vite-plugin-windicss": "^1.9.1",
40
40
  "vue": "^3.3.4",
41
41
  "vue-router": "^4.2.4",
42
42
  "vue-starport": "^0.3.0",
43
43
  "windicss": "^3.5.6",
44
- "@slidev/parser": "0.42.7",
45
- "@slidev/types": "0.42.7"
44
+ "@slidev/parser": "0.42.9",
45
+ "@slidev/types": "0.42.9"
46
46
  },
47
47
  "devDependencies": {
48
- "vite": "^4.4.8"
48
+ "vite": "^4.4.9"
49
49
  }
50
50
  }
package/shim.d.ts CHANGED
@@ -6,7 +6,7 @@ declare interface Window {
6
6
 
7
7
  declare module '*.vue';
8
8
 
9
- // with vite-plugin-vue-markdown, markdowns can be treat as Vue components
9
+ // with unplugin-vue-markdown, markdowns can be treat as Vue components
10
10
  declare module '*.md' {
11
11
  import type { ComponentOptions } from 'vue'
12
12
  const component: ComponentOptions