@mrxkun/mcfast-mcp 3.5.10 → 3.5.11

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrxkun/mcfast-mcp",
3
- "version": "3.5.10",
3
+ "version": "3.5.11",
4
4
  "description": "Ultra-fast code editing with WASM acceleration, fuzzy patching, multi-layer caching, and 8 unified tools. Optimized for AI code assistants with 80-98% latency reduction.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -9,6 +9,13 @@ export const QUERIES = {
9
9
  (class_declaration name: (type_identifier) @name) @class
10
10
  (method_definition key: (property_identifier) @name) @method
11
11
  (interface_declaration name: (type_identifier) @name) @interface
12
+ (export_statement
13
+ (function_declaration name: (identifier) @name)) @export_function
14
+ (export_statement
15
+ (class_declaration name: (type_identifier) @name)) @export_class
16
+ (export_statement
17
+ (lexical_declaration
18
+ (variable_declarator name: (identifier) @name))) @export_const
12
19
  `,
13
20
  references: `
14
21
  (identifier) @ref
@@ -41,6 +48,13 @@ export const QUERIES = {
41
48
  (class_declaration name: (identifier) @name) @class
42
49
  (method_definition key: (property_identifier) @name) @method
43
50
  (variable_declarator name: (identifier) @name init: (arrow_function)) @arrow_function
51
+ (export_statement
52
+ (function_declaration name: (identifier) @name)) @export_function
53
+ (export_statement
54
+ (class_declaration name: (identifier) @name)) @export_class
55
+ (export_statement
56
+ (lexical_declaration
57
+ (variable_declarator name: (identifier) @name))) @export_const
44
58
  `,
45
59
  references: `
46
60
  (identifier) @ref