compmark-vue 0.3.0 → 0.3.1

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/README.md +15 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,6 +9,21 @@
9
9
 
10
10
  Auto-generate Markdown documentation from Vue 3 SFCs. Zero configuration required.
11
11
 
12
+ ## Installation
13
+
14
+ ```sh
15
+ # npm
16
+ npm install -D compmark-vue
17
+
18
+ # pnpm
19
+ pnpm add -D compmark-vue
20
+
21
+ # yarn
22
+ yarn add -D compmark-vue
23
+ ```
24
+
25
+ > Requires Node.js >= 20
26
+
12
27
  ## Quick Start
13
28
 
14
29
  Document a single component:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compmark-vue",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Auto-generate Markdown documentation from Vue 3 SFCs",
5
5
  "license": "MIT",
6
6
  "repository": "noopurphalak/compmark-vue",