@rcarls/rc-textarea-adapters 0.1.0 → 0.3.0
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/README.md +3 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# @rcarls/rc-textarea-adapters
|
|
2
2
|
|
|
3
|
-
Adapter factories
|
|
4
|
-
|
|
3
|
+
Adapter factories that connect Lezer, unified, and Shiki tokenizers to `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.
|
|
7
|
-
"description": "Adapter factories
|
|
6
|
+
"version": "0.3.0",
|
|
7
|
+
"description": "Adapter factories that connect Lezer, unified, and Shiki tokenizers to 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-adapters"
|
|
12
12
|
},
|
|
13
|
-
"homepage": "https://github.
|
|
13
|
+
"homepage": "https://richardcarls.github.io/rc-webcomponents/components/rc-textarea",
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"files": [
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"exports": {
|
|
21
21
|
".": {
|
|
22
22
|
"import": {
|
|
23
|
-
"types": "./dist/types/
|
|
23
|
+
"types": "./dist/types/index.d.ts",
|
|
24
24
|
"default": "./dist/rc-textarea-adapters.js"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
|
-
"types": "./dist/types/
|
|
28
|
+
"types": "./dist/types/index.d.ts",
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsc && vite build"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@rcarls/rc-textarea": "workspace
|
|
34
|
+
"@rcarls/rc-textarea": "workspace:*"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@lezer/common": ">=1.0.0",
|