@rcarls/rc-textarea-plugin-markdown 0.2.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 +3 -2
  2. package/package.json +8 -9
package/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # @rcarls/rc-textarea-plugin-markdown
2
2
 
3
- Markdown decoration plugin for [@rcarls/rc-textarea](../rc-textarea/). Usable standalone
4
- on any `rc-textarea` instance.
3
+ Markdown decoration plugin for `rc-textarea`.
4
+
5
+ Docs: [https://richardcarls.github.io/rc-webcomponents/components/rc-textarea](https://richardcarls.github.io/rc-webcomponents/components/rc-textarea).
5
6
 
6
7
  Part of the [rc-webcomponents](https://github.com/richardcarls/rc-webcomponents) library.
7
8
 
package/package.json CHANGED
@@ -3,14 +3,14 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.2.0",
7
- "description": "Markdown decoration plugin for rc-textarea",
6
+ "version": "0.3.1",
7
+ "description": "Markdown decoration plugin for rc-textarea.",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/richardcarls/rc-webcomponents.git",
11
11
  "directory": "packages/rc-textarea-plugin-markdown"
12
12
  },
13
- "homepage": "https://github.com/richardcarls/rc-webcomponents#readme",
13
+ "homepage": "https://richardcarls.github.io/rc-webcomponents/components/rc-textarea",
14
14
  "license": "MIT",
15
15
  "type": "module",
16
16
  "files": [
@@ -20,19 +20,18 @@
20
20
  "exports": {
21
21
  ".": {
22
22
  "import": {
23
- "types": "./dist/types/packages/rc-textarea-plugin-markdown/src/index.d.ts",
23
+ "types": "./dist/types/index.d.ts",
24
24
  "default": "./dist/rc-textarea-plugin-markdown.js"
25
25
  }
26
26
  }
27
27
  },
28
- "types": "./dist/types/packages/rc-textarea-plugin-markdown/src/index.d.ts",
28
+ "types": "./dist/types/index.d.ts",
29
29
  "sideEffects": false,
30
30
  "scripts": {
31
- "build": "tsc && vite build",
32
- "yalc:publish": "yalc publish --push"
31
+ "build": "tsc && vite build"
33
32
  },
34
33
  "devDependencies": {
35
- "@rcarls/rc-textarea": "workspace:^",
34
+ "@rcarls/rc-textarea": "workspace:*",
36
35
  "mdast-util-from-markdown": "^2.0.2",
37
36
  "micromark": "^4.0.2",
38
37
  "typescript": "~5.9.3",
@@ -41,7 +40,7 @@
41
40
  "vite-plugin-dts": "^4.5.4"
42
41
  },
43
42
  "peerDependencies": {
44
- "@rcarls/rc-textarea": "workspace:^",
43
+ "@rcarls/rc-textarea": "workspace:>=0.2.0 <1.0.0",
45
44
  "mdast-util-from-markdown": ">=2.0.0",
46
45
  "micromark": ">=4.0.0",
47
46
  "unist-util-visit": ">=5.0.0"