milens 0.4.0 → 0.4.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/LICENSE +75 -75
- package/README.md +479 -453
- package/dist/analyzer/config.d.ts +8 -0
- package/dist/analyzer/config.d.ts.map +1 -0
- package/dist/analyzer/config.js +132 -0
- package/dist/analyzer/config.js.map +1 -0
- package/dist/analyzer/engine.d.ts.map +1 -1
- package/dist/analyzer/engine.js +77 -4
- package/dist/analyzer/engine.js.map +1 -1
- package/dist/analyzer/enrich.d.ts +18 -0
- package/dist/analyzer/enrich.d.ts.map +1 -0
- package/dist/analyzer/enrich.js +139 -0
- package/dist/analyzer/enrich.js.map +1 -0
- package/dist/analyzer/resolver.d.ts +10 -1
- package/dist/analyzer/resolver.d.ts.map +1 -1
- package/dist/analyzer/resolver.js +309 -18
- package/dist/analyzer/resolver.js.map +1 -1
- package/dist/cli.js +478 -32
- package/dist/cli.js.map +1 -1
- package/dist/parser/extract.d.ts +2 -0
- package/dist/parser/extract.d.ts.map +1 -1
- package/dist/parser/extract.js +27 -3
- package/dist/parser/extract.js.map +1 -1
- package/dist/parser/lang-go.js +22 -22
- package/dist/parser/lang-go.js.map +1 -1
- package/dist/parser/lang-java.d.ts.map +1 -1
- package/dist/parser/lang-java.js +29 -25
- package/dist/parser/lang-java.js.map +1 -1
- package/dist/parser/lang-js.d.ts.map +1 -1
- package/dist/parser/lang-js.js +60 -43
- package/dist/parser/lang-js.js.map +1 -1
- package/dist/parser/lang-php.d.ts.map +1 -1
- package/dist/parser/lang-php.js +39 -33
- package/dist/parser/lang-php.js.map +1 -1
- package/dist/parser/lang-py.js +31 -31
- package/dist/parser/lang-ruby.d.ts +4 -0
- package/dist/parser/lang-ruby.d.ts.map +1 -0
- package/dist/parser/lang-ruby.js +50 -0
- package/dist/parser/lang-ruby.js.map +1 -0
- package/dist/parser/lang-rust.js +24 -24
- package/dist/parser/lang-ts.d.ts.map +1 -1
- package/dist/parser/lang-ts.js +73 -57
- package/dist/parser/lang-ts.js.map +1 -1
- package/dist/parser/languages.d.ts.map +1 -1
- package/dist/parser/languages.js +2 -1
- package/dist/parser/languages.js.map +1 -1
- package/dist/server/mcp.d.ts.map +1 -1
- package/dist/server/mcp.js +883 -95
- package/dist/server/mcp.js.map +1 -1
- package/dist/skills.js +100 -88
- package/dist/skills.js.map +1 -1
- package/dist/store/db.d.ts +62 -0
- package/dist/store/db.d.ts.map +1 -1
- package/dist/store/db.js +244 -59
- package/dist/store/db.js.map +1 -1
- package/dist/store/schema.sql +83 -60
- package/dist/types.d.ts +14 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +60 -60
package/dist/parser/lang-rust.js
CHANGED
|
@@ -5,37 +5,37 @@ const spec = {
|
|
|
5
5
|
extensions: ['.rs'],
|
|
6
6
|
wasmName: 'tree-sitter-rust',
|
|
7
7
|
queries: {
|
|
8
|
-
functions: `[
|
|
9
|
-
(function_item name: (identifier) @name) @def
|
|
10
|
-
(const_item name: (identifier) @name) @def
|
|
11
|
-
(static_item name: (identifier) @name) @def
|
|
12
|
-
(type_item name: (type_identifier) @name) @def
|
|
13
|
-
(mod_item name: (identifier) @name) @def
|
|
8
|
+
functions: `[
|
|
9
|
+
(function_item name: (identifier) @name) @def
|
|
10
|
+
(const_item name: (identifier) @name) @def
|
|
11
|
+
(static_item name: (identifier) @name) @def
|
|
12
|
+
(type_item name: (type_identifier) @name) @def
|
|
13
|
+
(mod_item name: (identifier) @name) @def
|
|
14
14
|
]`,
|
|
15
15
|
structs: `(struct_item name: (type_identifier) @name) @def`,
|
|
16
16
|
enums: `(enum_item name: (type_identifier) @name) @def`,
|
|
17
17
|
traits: `(trait_item name: (type_identifier) @name) @def`,
|
|
18
|
-
methods: `(impl_item
|
|
19
|
-
body: (declaration_list
|
|
20
|
-
(function_item name: (identifier) @name) @def
|
|
21
|
-
)
|
|
18
|
+
methods: `(impl_item
|
|
19
|
+
body: (declaration_list
|
|
20
|
+
(function_item name: (identifier) @name) @def
|
|
21
|
+
)
|
|
22
22
|
)`,
|
|
23
|
-
imports: `(use_declaration
|
|
24
|
-
argument: [
|
|
25
|
-
(scoped_identifier) @source
|
|
26
|
-
(use_as_clause path: (scoped_identifier) @source)
|
|
27
|
-
(scoped_use_list path: (scoped_identifier) @source)
|
|
28
|
-
]
|
|
23
|
+
imports: `(use_declaration
|
|
24
|
+
argument: [
|
|
25
|
+
(scoped_identifier) @source
|
|
26
|
+
(use_as_clause path: (scoped_identifier) @source)
|
|
27
|
+
(scoped_use_list path: (scoped_identifier) @source)
|
|
28
|
+
]
|
|
29
29
|
) @def`,
|
|
30
|
-
calls: `[
|
|
31
|
-
(call_expression function: (identifier) @callee) @def
|
|
32
|
-
(call_expression function: (scoped_identifier name: (identifier) @callee)) @def
|
|
33
|
-
(call_expression function: (field_expression field: (field_identifier) @callee)) @def
|
|
34
|
-
(macro_invocation macro: (identifier) @callee) @def
|
|
30
|
+
calls: `[
|
|
31
|
+
(call_expression function: (identifier) @callee) @def
|
|
32
|
+
(call_expression function: (scoped_identifier name: (identifier) @callee)) @def
|
|
33
|
+
(call_expression function: (field_expression value: (_) @receiver field: (field_identifier) @callee)) @def
|
|
34
|
+
(macro_invocation macro: (identifier) @callee) @def
|
|
35
35
|
]`,
|
|
36
|
-
heritage: `(impl_item
|
|
37
|
-
trait: (type_identifier) @parent
|
|
38
|
-
type: (type_identifier) @child
|
|
36
|
+
heritage: `(impl_item
|
|
37
|
+
trait: (type_identifier) @parent
|
|
38
|
+
type: (type_identifier) @child
|
|
39
39
|
) @def`,
|
|
40
40
|
},
|
|
41
41
|
resolveImport(raw, _fromFile, root, _aliases) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lang-ts.d.ts","sourceRoot":"","sources":["../../src/parser/lang-ts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAE7C,QAAA,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"lang-ts.d.ts","sourceRoot":"","sources":["../../src/parser/lang-ts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAE7C,QAAA,MAAM,IAAI,EAAE,QAiHX,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
package/dist/parser/lang-ts.js
CHANGED
|
@@ -5,70 +5,85 @@ const spec = {
|
|
|
5
5
|
extensions: ['.ts', '.tsx'],
|
|
6
6
|
wasmName: 'tree-sitter-tsx',
|
|
7
7
|
queries: {
|
|
8
|
-
functions: `[
|
|
9
|
-
(function_declaration name: (identifier) @name) @def
|
|
10
|
-
(lexical_declaration
|
|
11
|
-
(variable_declarator
|
|
12
|
-
name: (identifier) @name
|
|
13
|
-
value: (arrow_function)
|
|
14
|
-
)
|
|
15
|
-
) @def
|
|
8
|
+
functions: `[
|
|
9
|
+
(function_declaration name: (identifier) @name) @def
|
|
10
|
+
(lexical_declaration
|
|
11
|
+
(variable_declarator
|
|
12
|
+
name: (identifier) @name
|
|
13
|
+
value: (arrow_function)
|
|
14
|
+
)
|
|
15
|
+
) @def
|
|
16
16
|
]`,
|
|
17
17
|
classes: `(class_declaration name: (type_identifier) @name) @def`,
|
|
18
18
|
methods: `(method_definition name: (property_identifier) @name) @def`,
|
|
19
19
|
interfaces: `(interface_declaration name: (type_identifier) @name) @def`,
|
|
20
20
|
enums: `(enum_declaration name: (identifier) @name) @def`,
|
|
21
|
-
imports: `[
|
|
22
|
-
(import_statement
|
|
23
|
-
source: (string (string_fragment) @source)
|
|
24
|
-
) @def
|
|
25
|
-
(lexical_declaration
|
|
26
|
-
(variable_declarator
|
|
27
|
-
value: (call_expression
|
|
28
|
-
function: (identifier) @_req
|
|
29
|
-
arguments: (arguments (string (string_fragment) @source))
|
|
30
|
-
)
|
|
31
|
-
)
|
|
32
|
-
) @def
|
|
21
|
+
imports: `[
|
|
22
|
+
(import_statement
|
|
23
|
+
source: (string (string_fragment) @source)
|
|
24
|
+
) @def
|
|
25
|
+
(lexical_declaration
|
|
26
|
+
(variable_declarator
|
|
27
|
+
value: (call_expression
|
|
28
|
+
function: (identifier) @_req
|
|
29
|
+
arguments: (arguments (string (string_fragment) @source))
|
|
30
|
+
)
|
|
31
|
+
)
|
|
32
|
+
) @def
|
|
33
33
|
]`,
|
|
34
|
-
exports: `[
|
|
35
|
-
(export_statement
|
|
36
|
-
declaration: (function_declaration name: (identifier) @name)
|
|
37
|
-
)
|
|
38
|
-
(export_statement
|
|
39
|
-
declaration: (class_declaration name: (type_identifier) @name)
|
|
40
|
-
)
|
|
41
|
-
(export_statement
|
|
42
|
-
declaration: (interface_declaration name: (type_identifier) @name)
|
|
43
|
-
)
|
|
44
|
-
(export_statement
|
|
45
|
-
declaration: (enum_declaration name: (identifier) @name)
|
|
46
|
-
)
|
|
47
|
-
(export_statement
|
|
48
|
-
declaration: (lexical_declaration
|
|
49
|
-
(variable_declarator name: (identifier) @name)
|
|
50
|
-
)
|
|
51
|
-
)
|
|
52
|
-
(export_statement
|
|
53
|
-
(export_clause (export_specifier name: (identifier) @name))
|
|
54
|
-
)
|
|
55
|
-
(export_statement
|
|
56
|
-
declaration: (type_alias_declaration name: (type_identifier) @name)
|
|
57
|
-
)
|
|
34
|
+
exports: `[
|
|
35
|
+
(export_statement
|
|
36
|
+
declaration: (function_declaration name: (identifier) @name)
|
|
37
|
+
)
|
|
38
|
+
(export_statement
|
|
39
|
+
declaration: (class_declaration name: (type_identifier) @name)
|
|
40
|
+
)
|
|
41
|
+
(export_statement
|
|
42
|
+
declaration: (interface_declaration name: (type_identifier) @name)
|
|
43
|
+
)
|
|
44
|
+
(export_statement
|
|
45
|
+
declaration: (enum_declaration name: (identifier) @name)
|
|
46
|
+
)
|
|
47
|
+
(export_statement
|
|
48
|
+
declaration: (lexical_declaration
|
|
49
|
+
(variable_declarator name: (identifier) @name)
|
|
50
|
+
)
|
|
51
|
+
)
|
|
52
|
+
(export_statement
|
|
53
|
+
(export_clause (export_specifier name: (identifier) @name))
|
|
54
|
+
)
|
|
55
|
+
(export_statement
|
|
56
|
+
declaration: (type_alias_declaration name: (type_identifier) @name)
|
|
57
|
+
)
|
|
58
58
|
]`,
|
|
59
|
-
calls: `
|
|
60
|
-
(call_expression function: (identifier) @callee) @def
|
|
61
|
-
(call_expression function: (member_expression property: (property_identifier) @callee)) @def
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
(
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
59
|
+
calls: `[
|
|
60
|
+
(call_expression function: (identifier) @callee) @def
|
|
61
|
+
(call_expression function: (member_expression object: (_) @receiver property: (property_identifier) @callee)) @def
|
|
62
|
+
(decorator (identifier) @callee) @def
|
|
63
|
+
(jsx_self_closing_element name: (identifier) @callee) @def
|
|
64
|
+
(jsx_opening_element name: (identifier) @callee) @def
|
|
65
|
+
(jsx_self_closing_element name: (member_expression object: (identifier) @receiver property: (property_identifier) @callee)) @def
|
|
66
|
+
(jsx_opening_element name: (member_expression object: (identifier) @receiver property: (property_identifier) @callee)) @def
|
|
67
|
+
]`,
|
|
68
|
+
heritage: `[
|
|
69
|
+
(class_declaration
|
|
70
|
+
name: (type_identifier) @child
|
|
71
|
+
(class_heritage (extends_clause value: (identifier) @parent))
|
|
72
|
+
) @def
|
|
73
|
+
(class_declaration
|
|
74
|
+
name: (type_identifier) @child
|
|
75
|
+
(class_heritage (implements_clause (type_identifier) @parent))
|
|
76
|
+
) @def
|
|
77
|
+
]`,
|
|
78
|
+
reExports: `[
|
|
79
|
+
(export_statement
|
|
80
|
+
source: (string (string_fragment) @source)
|
|
81
|
+
(export_clause (export_specifier name: (identifier) @name))
|
|
82
|
+
) @def
|
|
83
|
+
(export_statement
|
|
84
|
+
source: (string (string_fragment) @source)
|
|
85
|
+
"*"
|
|
86
|
+
) @def
|
|
72
87
|
]`,
|
|
73
88
|
},
|
|
74
89
|
resolveImport(raw, fromFile, root, aliases) {
|
|
@@ -87,6 +102,7 @@ const spec = {
|
|
|
87
102
|
const candidates = [
|
|
88
103
|
base + '.ts', base + '.tsx',
|
|
89
104
|
base + '.js', base + '.jsx',
|
|
105
|
+
base + '.vue',
|
|
90
106
|
join(base, 'index.ts'), join(base, 'index.tsx'),
|
|
91
107
|
join(base, 'index.js'),
|
|
92
108
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lang-ts.js","sourceRoot":"","sources":["../../src/parser/lang-ts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAGrC,MAAM,IAAI,GAAa;IACrB,EAAE,EAAE,YAAY;IAChB,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;IAC3B,QAAQ,EAAE,iBAAiB;IAC3B,OAAO,EAAE;QACP,SAAS,EAAE;;;;;;;;MAQT;QACF,OAAO,EAAE,wDAAwD;QACjE,OAAO,EAAE,4DAA4D;QACrE,UAAU,EAAE,4DAA4D;QACxE,KAAK,EAAE,kDAAkD;QACzD,OAAO,EAAE;;;;;;;;;;;;MAYP;QACF,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;MAwBP;QACF,KAAK,EAAE
|
|
1
|
+
{"version":3,"file":"lang-ts.js","sourceRoot":"","sources":["../../src/parser/lang-ts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAGrC,MAAM,IAAI,GAAa;IACrB,EAAE,EAAE,YAAY;IAChB,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC;IAC3B,QAAQ,EAAE,iBAAiB;IAC3B,OAAO,EAAE;QACP,SAAS,EAAE;;;;;;;;MAQT;QACF,OAAO,EAAE,wDAAwD;QACjE,OAAO,EAAE,4DAA4D;QACrE,UAAU,EAAE,4DAA4D;QACxE,KAAK,EAAE,kDAAkD;QACzD,OAAO,EAAE;;;;;;;;;;;;MAYP;QACF,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;MAwBP;QACF,KAAK,EAAE;;;;;;;;MAQL;QACF,QAAQ,EAAE;;;;;;;;;MASR;QACF,SAAS,EAAE;;;;;;;;;MAST;KACH;IACD,aAAa,CAAC,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO;QACxC,qCAAqC;QACrC,KAAK,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC;YACtD,IAAI,GAAG,CAAC,UAAU,CAAC,KAAK,GAAG,GAAG,CAAC,IAAI,GAAG,KAAK,KAAK,EAAE,CAAC;gBACjD,GAAG,GAAG,GAAG,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;gBACjC,MAAM;YACR,CAAC;QACH,CAAC;QAED,6CAA6C;QAC7C,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC;QAE9D,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC;QAC1C,MAAM,IAAI,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;QAC5B,MAAM,UAAU,GAAG;YACjB,IAAI,GAAG,KAAK,EAAE,IAAI,GAAG,MAAM;YAC3B,IAAI,GAAG,KAAK,EAAE,IAAI,GAAG,MAAM;YAC3B,IAAI,GAAG,MAAM;YACb,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,EAAE,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC;YAC/C,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC;SACvB,CAAC;QAEF,KAAK,MAAM,CAAC,IAAI,UAAU,EAAE,CAAC;YAC3B,IAAI,UAAU,CAAC,CAAC,CAAC;gBAAE,OAAO,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;QAClE,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"languages.d.ts","sourceRoot":"","sources":["../../src/parser/languages.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"languages.d.ts","sourceRoot":"","sources":["../../src/parser/languages.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAW7C,QAAA,MAAM,SAAS,EAAE,QAAQ,EAAqF,CAAC;AAS/G,wBAAgB,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,QAAQ,GAAG,SAAS,CAGlE;AAED,wBAAgB,mBAAmB,IAAI,MAAM,EAAE,CAE9C;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
package/dist/parser/languages.js
CHANGED
|
@@ -5,8 +5,9 @@ import javaSpec from './lang-java.js';
|
|
|
5
5
|
import goSpec from './lang-go.js';
|
|
6
6
|
import rustSpec from './lang-rust.js';
|
|
7
7
|
import phpSpec from './lang-php.js';
|
|
8
|
+
import rubySpec from './lang-ruby.js';
|
|
8
9
|
import vueSpec from './lang-vue.js';
|
|
9
|
-
const ALL_LANGS = [tsSpec, jsSpec, pySpec, javaSpec, goSpec, rustSpec, phpSpec, vueSpec];
|
|
10
|
+
const ALL_LANGS = [tsSpec, jsSpec, pySpec, javaSpec, goSpec, rustSpec, phpSpec, rubySpec, vueSpec];
|
|
10
11
|
const byExtension = new Map();
|
|
11
12
|
for (const lang of ALL_LANGS) {
|
|
12
13
|
for (const ext of lang.extensions) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"languages.js","sourceRoot":"","sources":["../../src/parser/languages.ts"],"names":[],"mappings":"AACA,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,QAAQ,MAAM,gBAAgB,CAAC;AACtC,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,QAAQ,MAAM,gBAAgB,CAAC;AACtC,OAAO,OAAO,MAAM,eAAe,CAAC;AACpC,OAAO,OAAO,MAAM,eAAe,CAAC;AAEpC,MAAM,SAAS,GAAe,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"languages.js","sourceRoot":"","sources":["../../src/parser/languages.ts"],"names":[],"mappings":"AACA,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,QAAQ,MAAM,gBAAgB,CAAC;AACtC,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,QAAQ,MAAM,gBAAgB,CAAC;AACtC,OAAO,OAAO,MAAM,eAAe,CAAC;AACpC,OAAO,QAAQ,MAAM,gBAAgB,CAAC;AACtC,OAAO,OAAO,MAAM,eAAe,CAAC;AAEpC,MAAM,SAAS,GAAe,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;AAE/G,MAAM,WAAW,GAAG,IAAI,GAAG,EAAoB,CAAC;AAChD,KAAK,MAAM,IAAI,IAAI,SAAS,EAAE,CAAC;IAC7B,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;QAClC,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC7B,CAAC;AACH,CAAC;AAED,MAAM,UAAU,WAAW,CAAC,QAAgB;IAC1C,MAAM,GAAG,GAAG,GAAG,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,WAAW,EAAE,CAAC;IAC3D,OAAO,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;AAC9B,CAAC;AAED,MAAM,UAAU,mBAAmB;IACjC,OAAO,CAAC,GAAG,WAAW,CAAC,IAAI,EAAE,CAAC,CAAC;AACjC,CAAC;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
package/dist/server/mcp.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp.d.ts","sourceRoot":"","sources":["../../src/server/mcp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"mcp.d.ts","sourceRoot":"","sources":["../../src/server/mcp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAoB,MAAM,yCAAyC,CAAC;AAiUtF,wBAAgB,eAAe,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAksC5D;AAID,wBAAsB,UAAU,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAIjE;AAID,wBAAsB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CA2D9E"}
|