vuepress-plugin-md-power 1.0.0-rc.146 → 1.0.0-rc.148
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/lib/client/components/VPCodeTree.vue +16 -0
- package/lib/client/composables/audio.d.ts +35 -35
- package/lib/client/composables/audio.js +169 -181
- package/lib/client/composables/codeRepl.d.ts +20 -17
- package/lib/client/composables/codeRepl.js +146 -252
- package/lib/client/composables/demo.d.ts +34 -41
- package/lib/client/composables/demo.js +108 -102
- package/lib/client/composables/pdf.d.ts +4 -15
- package/lib/client/composables/pdf.js +46 -51
- package/lib/client/composables/rustRepl-iGLjb94D.js +101 -0
- package/lib/client/composables/rustRepl.d.ts +15 -7
- package/lib/client/composables/rustRepl.js +3 -104
- package/lib/client/composables/size.d.ts +11 -21
- package/lib/client/composables/size.js +35 -32
- package/lib/client/index.d.ts +1 -1
- package/lib/client/index.js +1 -2
- package/lib/client/options.d.ts +8 -8
- package/lib/client/options.js +20 -29
- package/lib/client/utils/http.d.ts +5 -3
- package/lib/client/utils/http.js +19 -24
- package/lib/client/utils/link.d.ts +3 -1
- package/lib/client/utils/link.js +6 -5
- package/lib/client/utils/sleep.d.ts +3 -1
- package/lib/client/utils/sleep.js +7 -7
- package/lib/node/index.d.ts +405 -368
- package/lib/node/index.js +3777 -3779
- package/lib/shared/index.d.ts +395 -365
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuepress-plugin-md-power",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.0-rc.
|
|
4
|
+
"version": "1.0.0-rc.148",
|
|
5
5
|
"description": "The Plugin for VuePress 2 - markdown power",
|
|
6
6
|
"author": "pengzhanbo <volodymyr@foxmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"less": "^4.3.0",
|
|
39
39
|
"markdown-it": "^14.1.0",
|
|
40
40
|
"mpegts.js": "^1.7.3",
|
|
41
|
-
"sass": "^1.
|
|
42
|
-
"sass-embedded": "^1.
|
|
41
|
+
"sass": "^1.88.0",
|
|
42
|
+
"sass-embedded": "^1.88.0",
|
|
43
43
|
"stylus": "^0.64.0",
|
|
44
44
|
"vuepress": "2.0.0-rc.22"
|
|
45
45
|
},
|
|
@@ -77,10 +77,10 @@
|
|
|
77
77
|
"lru-cache": "^11.1.0",
|
|
78
78
|
"markdown-it-container": "^4.0.0",
|
|
79
79
|
"nanoid": "^5.1.5",
|
|
80
|
-
"shiki": "^3.
|
|
80
|
+
"shiki": "^3.4.0",
|
|
81
81
|
"tinyglobby": "0.2.13",
|
|
82
|
-
"tm-grammars": "^1.23.
|
|
83
|
-
"tm-themes": "^1.10.
|
|
82
|
+
"tm-grammars": "^1.23.18",
|
|
83
|
+
"tm-themes": "^1.10.6",
|
|
84
84
|
"vue": "^3.5.13"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
@@ -100,12 +100,12 @@
|
|
|
100
100
|
"vuepress-plugin-md-power"
|
|
101
101
|
],
|
|
102
102
|
"scripts": {
|
|
103
|
-
"dev": "pnpm '/(copy|
|
|
104
|
-
"build": "pnpm
|
|
103
|
+
"dev": "pnpm '/(copy|tsdown):watch/'",
|
|
104
|
+
"build": "pnpm tsdown && pnpm copy",
|
|
105
105
|
"clean": "rimraf --glob ./lib",
|
|
106
106
|
"copy": "cpx \"src/**/*.{d.ts,vue,css,scss,jpg,png}\" lib",
|
|
107
107
|
"copy:watch": "cpx \"src/**/*.{d.ts,vue,css,scss,jpg,png}\" lib -w",
|
|
108
|
-
"
|
|
109
|
-
"
|
|
108
|
+
"tsdown": "tsdown",
|
|
109
|
+
"tsdown:watch": "tsdown --watch -- -c"
|
|
110
110
|
}
|
|
111
111
|
}
|