@docmd/plugin-installer 0.6.0 → 0.6.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.
- package/package.json +3 -2
- package/registry/plugins.json +44 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docmd/plugin-installer",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Installer utility to add and remove plugins for docmd.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"build": "tsc"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
|
-
"dist"
|
|
12
|
+
"dist",
|
|
13
|
+
"registry"
|
|
13
14
|
],
|
|
14
15
|
"dependencies": {
|
|
15
16
|
"chalk": "^4.1.2"
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"analytics": {
|
|
3
|
+
"package": "@docmd/plugin-analytics",
|
|
4
|
+
"description": "Analytics injection plugin for docmd",
|
|
5
|
+
"configKey": "analytics",
|
|
6
|
+
"defaultConfig": "{}"
|
|
7
|
+
},
|
|
8
|
+
"search": {
|
|
9
|
+
"package": "@docmd/plugin-search",
|
|
10
|
+
"description": "Local search implementation for docmd",
|
|
11
|
+
"configKey": "search",
|
|
12
|
+
"defaultConfig": "{}"
|
|
13
|
+
},
|
|
14
|
+
"seo": {
|
|
15
|
+
"package": "@docmd/plugin-seo",
|
|
16
|
+
"description": "SEO meta tag generator for docmd",
|
|
17
|
+
"configKey": "seo",
|
|
18
|
+
"defaultConfig": "{}"
|
|
19
|
+
},
|
|
20
|
+
"sitemap": {
|
|
21
|
+
"package": "@docmd/plugin-sitemap",
|
|
22
|
+
"description": "Sitemap generator for docmd",
|
|
23
|
+
"configKey": "sitemap",
|
|
24
|
+
"defaultConfig": "{}"
|
|
25
|
+
},
|
|
26
|
+
"mermaid": {
|
|
27
|
+
"package": "@docmd/plugin-mermaid",
|
|
28
|
+
"description": "Mermaid.js diagram support for docmd",
|
|
29
|
+
"configKey": "mermaid",
|
|
30
|
+
"defaultConfig": "{}"
|
|
31
|
+
},
|
|
32
|
+
"llms": {
|
|
33
|
+
"package": "@docmd/plugin-llms",
|
|
34
|
+
"description": "LLM integration plugin for docmd",
|
|
35
|
+
"configKey": "llms",
|
|
36
|
+
"defaultConfig": "{}"
|
|
37
|
+
},
|
|
38
|
+
"pwa": {
|
|
39
|
+
"package": "@docmd/plugin-pwa",
|
|
40
|
+
"description": "Progressive Web App support for docmd",
|
|
41
|
+
"configKey": "pwa",
|
|
42
|
+
"defaultConfig": "{}"
|
|
43
|
+
}
|
|
44
|
+
}
|