markview-vue 0.1.8 → 0.1.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": "markview-vue",
3
- "version": "0.1.8",
3
+ "version": "0.1.11",
4
4
  "description": "Modern Vue 3 Markdown/MDX renderer with syntax highlighting, math formulas, TOC and more",
5
5
  "author": "advance",
6
6
  "repository": {
@@ -32,16 +32,6 @@
32
32
  "**/*.css",
33
33
  "**/*.scss"
34
34
  ],
35
- "scripts": {
36
- "dev": "vite",
37
- "build": "vite build --mode production",
38
- "build:demo": "vite build --mode demo",
39
- "build:watch": "vite build --watch",
40
- "build:check": "vue-tsc --noEmit && vite build",
41
- "preview": "vite preview --outDir demo-dist --port 3002",
42
- "prepublishOnly": "pnpm run build",
43
- "deploy:demo": "pnpm build:demo && gh-pages -d demo-dist"
44
- },
45
35
  "peerDependencies": {
46
36
  "vue": "^3.3.0"
47
37
  },
@@ -85,5 +75,14 @@
85
75
  "publishConfig": {
86
76
  "registry": "https://registry.npmjs.org/",
87
77
  "access": "public"
78
+ },
79
+ "scripts": {
80
+ "dev": "vite",
81
+ "build": "vite build --mode production",
82
+ "build:demo": "vite build --mode demo",
83
+ "build:watch": "vite build --watch",
84
+ "build:check": "vue-tsc --noEmit && vite build",
85
+ "preview": "vite preview --outDir demo-dist --port 3002",
86
+ "deploy:demo": "pnpm build:demo && gh-pages -d demo-dist"
88
87
  }
89
- }
88
+ }