@md-plugins/md-plugin-imports 0.1.0-alpha.2 → 0.1.0-alpha.20
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 +4 -0
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -122,6 +122,10 @@ Run the unit tests with `Vitest`:
|
|
|
122
122
|
pnpm test
|
|
123
123
|
```
|
|
124
124
|
|
|
125
|
+
## Documentation
|
|
126
|
+
|
|
127
|
+
In case this README falls out of date, please refer to the [documentation](https://md-plugins.netlify.app/md-plugins/imports/overview) for the latest information.
|
|
128
|
+
|
|
125
129
|
## License
|
|
126
130
|
|
|
127
131
|
This project is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@md-plugins/md-plugin-imports",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.20",
|
|
4
4
|
"description": "A markdown-it plugin for handling imports in markdown files.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown-it",
|
|
@@ -32,10 +32,13 @@
|
|
|
32
32
|
"files": [
|
|
33
33
|
"./dist"
|
|
34
34
|
],
|
|
35
|
-
"
|
|
36
|
-
"@types/markdown-it": "^14.1.2",
|
|
35
|
+
"devDependencies": {
|
|
37
36
|
"markdown-it": "^14.1.0",
|
|
38
|
-
"@
|
|
37
|
+
"@types/markdown-it": "^14.1.2",
|
|
38
|
+
"@md-plugins/shared": "0.1.0-alpha.20"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"markdown-it": "^14.1.0"
|
|
39
42
|
},
|
|
40
43
|
"publishConfig": {
|
|
41
44
|
"access": "public"
|