@venizia/ignis-docs 0.0.8-1 → 0.0.8-2
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 +13 -13
- package/wiki/extensions/components/authorization/api.md +239 -376
- package/wiki/extensions/components/authorization/errors.md +52 -43
- package/wiki/extensions/components/authorization/index.md +127 -65
- package/wiki/extensions/components/authorization/usage.md +198 -98
- package/wiki/guides/migrations/scoped-rbac-migration.md +300 -0
- package/wiki/references/base/filter-system/default-filter.md +6 -3
- package/wiki/references/base/filter-system/fields-order-pagination.md +26 -0
- package/wiki/references/base/models.md +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@venizia/ignis-docs",
|
|
3
|
-
"version": "0.0.8-
|
|
3
|
+
"version": "0.0.8-2",
|
|
4
4
|
"description": "Interactive documentation site and MCP (Model Context Protocol) server for the Ignis Framework. Includes a VitePress-powered documentation site with guides, API references, and best practices. Ships an MCP server (CLI: ignis-docs-mcp) with 11 tools for AI assistants to search docs, browse source code, verify dependencies, and access real-time framework knowledge. Built with Mastra MCP SDK and Fuse.js fuzzy search.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -115,28 +115,28 @@
|
|
|
115
115
|
"prepublishOnly": "bun run mcp:rebuild"
|
|
116
116
|
},
|
|
117
117
|
"dependencies": {
|
|
118
|
-
"@mastra/core": "^1.
|
|
119
|
-
"@mastra/mcp": "^1.
|
|
120
|
-
"cytoscape": "^3.33.
|
|
118
|
+
"@mastra/core": "^1.36.0",
|
|
119
|
+
"@mastra/mcp": "^1.8.0",
|
|
120
|
+
"cytoscape": "^3.33.4",
|
|
121
121
|
"cytoscape-cose-bilkent": "^4.1.0",
|
|
122
122
|
"dayjs": "^1.11.20",
|
|
123
123
|
"debug": "^4.4.3",
|
|
124
124
|
"fast-glob": "^3.3.3",
|
|
125
|
-
"fuse.js": "^7.
|
|
125
|
+
"fuse.js": "^7.3.0",
|
|
126
126
|
"gray-matter": "^4.0.3",
|
|
127
127
|
"zod": "^4.3.6"
|
|
128
128
|
},
|
|
129
129
|
"devDependencies": {
|
|
130
130
|
"@braintree/sanitize-url": "^7.1.2",
|
|
131
|
-
"@types/bun": "^1.3.
|
|
132
|
-
"@venizia/dev-configs": "^0.0.7-
|
|
133
|
-
"eslint": "^10.
|
|
134
|
-
"prettier": "^3.8.
|
|
135
|
-
"tsc-alias": "^1.8.
|
|
136
|
-
"tsx": "^4.
|
|
137
|
-
"typescript": "^6.0.
|
|
131
|
+
"@types/bun": "^1.3.14",
|
|
132
|
+
"@venizia/dev-configs": "^0.0.7-2",
|
|
133
|
+
"eslint": "^10.4.0",
|
|
134
|
+
"prettier": "^3.8.3",
|
|
135
|
+
"tsc-alias": "^1.8.17",
|
|
136
|
+
"tsx": "^4.22.3",
|
|
137
|
+
"typescript": "^6.0.3",
|
|
138
138
|
"vitepress": "^1.6.4",
|
|
139
139
|
"vitepress-plugin-mermaid": "^2.0.17",
|
|
140
|
-
"vue": "^3.5.
|
|
140
|
+
"vue": "^3.5.34"
|
|
141
141
|
}
|
|
142
142
|
}
|