@monoes/graph 1.0.0
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/dist/src/analyze.d.ts +23 -0
- package/dist/src/analyze.d.ts.map +1 -0
- package/dist/src/analyze.js +105 -0
- package/dist/src/analyze.js.map +1 -0
- package/dist/src/build.d.ts +8 -0
- package/dist/src/build.d.ts.map +1 -0
- package/dist/src/build.js +59 -0
- package/dist/src/build.js.map +1 -0
- package/dist/src/cache.d.ts +10 -0
- package/dist/src/cache.d.ts.map +1 -0
- package/dist/src/cache.js +34 -0
- package/dist/src/cache.js.map +1 -0
- package/dist/src/cluster.d.ts +8 -0
- package/dist/src/cluster.d.ts.map +1 -0
- package/dist/src/cluster.js +50 -0
- package/dist/src/cluster.js.map +1 -0
- package/dist/src/detect.d.ts +8 -0
- package/dist/src/detect.d.ts.map +1 -0
- package/dist/src/detect.js +108 -0
- package/dist/src/detect.js.map +1 -0
- package/dist/src/export.d.ts +21 -0
- package/dist/src/export.d.ts.map +1 -0
- package/dist/src/export.js +68 -0
- package/dist/src/export.js.map +1 -0
- package/dist/src/extract/index.d.ts +20 -0
- package/dist/src/extract/index.d.ts.map +1 -0
- package/dist/src/extract/index.js +158 -0
- package/dist/src/extract/index.js.map +1 -0
- package/dist/src/extract/languages/go.d.ts +3 -0
- package/dist/src/extract/languages/go.d.ts.map +1 -0
- package/dist/src/extract/languages/go.js +181 -0
- package/dist/src/extract/languages/go.js.map +1 -0
- package/dist/src/extract/languages/python.d.ts +3 -0
- package/dist/src/extract/languages/python.d.ts.map +1 -0
- package/dist/src/extract/languages/python.js +230 -0
- package/dist/src/extract/languages/python.js.map +1 -0
- package/dist/src/extract/languages/rust.d.ts +3 -0
- package/dist/src/extract/languages/rust.d.ts.map +1 -0
- package/dist/src/extract/languages/rust.js +195 -0
- package/dist/src/extract/languages/rust.js.map +1 -0
- package/dist/src/extract/languages/typescript.d.ts +3 -0
- package/dist/src/extract/languages/typescript.d.ts.map +1 -0
- package/dist/src/extract/languages/typescript.js +295 -0
- package/dist/src/extract/languages/typescript.js.map +1 -0
- package/dist/src/extract/tree-sitter-runner.d.ts +48 -0
- package/dist/src/extract/tree-sitter-runner.d.ts.map +1 -0
- package/dist/src/extract/tree-sitter-runner.js +128 -0
- package/dist/src/extract/tree-sitter-runner.js.map +1 -0
- package/dist/src/extract/types.d.ts +7 -0
- package/dist/src/extract/types.d.ts.map +1 -0
- package/dist/src/extract/types.js +2 -0
- package/dist/src/extract/types.js.map +1 -0
- package/dist/src/index.d.ts +11 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +9 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/pipeline.d.ts +16 -0
- package/dist/src/pipeline.d.ts.map +1 -0
- package/dist/src/pipeline.js +143 -0
- package/dist/src/pipeline.js.map +1 -0
- package/dist/src/types.d.ts +99 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/src/types.js +2 -0
- package/dist/src/types.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +44 -0
- package/src/analyze.ts +122 -0
- package/src/build.ts +62 -0
- package/src/cache.ts +38 -0
- package/src/cluster.ts +54 -0
- package/src/detect.ts +123 -0
- package/src/export.ts +78 -0
- package/src/extract/index.ts +190 -0
- package/src/extract/languages/go.ts +206 -0
- package/src/extract/languages/python.ts +270 -0
- package/src/extract/languages/rust.ts +230 -0
- package/src/extract/languages/typescript.ts +344 -0
- package/src/extract/tree-sitter-runner.ts +165 -0
- package/src/extract/types.ts +7 -0
- package/src/index.ts +10 -0
- package/src/pipeline.ts +166 -0
- package/src/types.ts +116 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { readFileSync } from 'fs';
|
|
2
|
+
// ---- availability probe ----
|
|
3
|
+
let _treeSitterAvailable = null;
|
|
4
|
+
let _ParserCtor = null;
|
|
5
|
+
function probeTreeSitter() {
|
|
6
|
+
if (_treeSitterAvailable !== null)
|
|
7
|
+
return;
|
|
8
|
+
try {
|
|
9
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
10
|
+
const mod = require('node-tree-sitter');
|
|
11
|
+
const ctor = mod.default !== undefined
|
|
12
|
+
? mod.default
|
|
13
|
+
: mod;
|
|
14
|
+
if (typeof ctor === 'function') {
|
|
15
|
+
_ParserCtor = ctor;
|
|
16
|
+
_treeSitterAvailable = true;
|
|
17
|
+
}
|
|
18
|
+
else {
|
|
19
|
+
_treeSitterAvailable = false;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
catch {
|
|
23
|
+
_treeSitterAvailable = false;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Returns true when node-tree-sitter is installed and loadable.
|
|
28
|
+
*/
|
|
29
|
+
export function isTreeSitterAvailable() {
|
|
30
|
+
probeTreeSitter();
|
|
31
|
+
return _treeSitterAvailable === true;
|
|
32
|
+
}
|
|
33
|
+
// ---- language grammar loader ----
|
|
34
|
+
const LANGUAGE_MODULE_MAP = {
|
|
35
|
+
typescript: 'tree-sitter-typescript',
|
|
36
|
+
tsx: 'tree-sitter-typescript',
|
|
37
|
+
javascript: 'tree-sitter-javascript',
|
|
38
|
+
jsx: 'tree-sitter-javascript',
|
|
39
|
+
python: 'tree-sitter-python',
|
|
40
|
+
go: 'tree-sitter-go',
|
|
41
|
+
rust: 'tree-sitter-rust',
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Attempts to create a configured Parser for the given language identifier.
|
|
45
|
+
* Returns null when tree-sitter or the grammar is not installed.
|
|
46
|
+
*/
|
|
47
|
+
export function tryLoadParser(language) {
|
|
48
|
+
if (!isTreeSitterAvailable() || _ParserCtor === null)
|
|
49
|
+
return null;
|
|
50
|
+
const moduleName = LANGUAGE_MODULE_MAP[language];
|
|
51
|
+
if (!moduleName)
|
|
52
|
+
return null;
|
|
53
|
+
try {
|
|
54
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
55
|
+
const grammarMod = require(moduleName);
|
|
56
|
+
// tree-sitter-typescript exposes { typescript, tsx } sub-grammars
|
|
57
|
+
let grammar;
|
|
58
|
+
if (language === 'typescript' || language === 'tsx') {
|
|
59
|
+
grammar =
|
|
60
|
+
grammarMod[language] ??
|
|
61
|
+
grammarMod['default'] ??
|
|
62
|
+
grammarMod;
|
|
63
|
+
}
|
|
64
|
+
else {
|
|
65
|
+
grammar = grammarMod['default'] ?? grammarMod;
|
|
66
|
+
}
|
|
67
|
+
const parser = new _ParserCtor();
|
|
68
|
+
parser.setLanguage(grammar);
|
|
69
|
+
return parser;
|
|
70
|
+
}
|
|
71
|
+
catch {
|
|
72
|
+
return null;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
// ---- depth-first AST walker ----
|
|
76
|
+
export function walk(node, visitor) {
|
|
77
|
+
visitor(node);
|
|
78
|
+
for (const child of node.children) {
|
|
79
|
+
walk(child, visitor);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
// ---- main entry point ----
|
|
83
|
+
/**
|
|
84
|
+
* Parses a source file and delegates to the given LanguageExtractor.
|
|
85
|
+
* The extractor receives the file path and raw content; it owns the AST
|
|
86
|
+
* traversal internally (using tryLoadParser / walk from this module).
|
|
87
|
+
*
|
|
88
|
+
* Falls back gracefully: if tree-sitter cannot be loaded the extractor is still
|
|
89
|
+
* called with the raw content and is expected to use its regex fallback.
|
|
90
|
+
*/
|
|
91
|
+
export function parseFile(filePath, content, extractor) {
|
|
92
|
+
try {
|
|
93
|
+
return extractor.extract(filePath, content);
|
|
94
|
+
}
|
|
95
|
+
catch (err) {
|
|
96
|
+
return {
|
|
97
|
+
nodes: [],
|
|
98
|
+
edges: [],
|
|
99
|
+
filesProcessed: 1,
|
|
100
|
+
fromCache: 0,
|
|
101
|
+
errors: [
|
|
102
|
+
`parseFile error for ${filePath}: ${err instanceof Error ? err.message : String(err)}`,
|
|
103
|
+
],
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Convenience helper: read a file from disk and parse it.
|
|
109
|
+
*/
|
|
110
|
+
export function parseFileFromDisk(filePath, extractor) {
|
|
111
|
+
let content;
|
|
112
|
+
try {
|
|
113
|
+
content = readFileSync(filePath, 'utf8');
|
|
114
|
+
}
|
|
115
|
+
catch (err) {
|
|
116
|
+
return {
|
|
117
|
+
nodes: [],
|
|
118
|
+
edges: [],
|
|
119
|
+
filesProcessed: 1,
|
|
120
|
+
fromCache: 0,
|
|
121
|
+
errors: [
|
|
122
|
+
`Failed to read ${filePath}: ${err instanceof Error ? err.message : String(err)}`,
|
|
123
|
+
],
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
return parseFile(filePath, content, extractor);
|
|
127
|
+
}
|
|
128
|
+
//# sourceMappingURL=tree-sitter-runner.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tree-sitter-runner.js","sourceRoot":"","sources":["../../../src/extract/tree-sitter-runner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAqBlC,+BAA+B;AAE/B,IAAI,oBAAoB,GAAmB,IAAI,CAAC;AAChD,IAAI,WAAW,GAAsC,IAAI,CAAC;AAE1D,SAAS,eAAe;IACtB,IAAI,oBAAoB,KAAK,IAAI;QAAE,OAAO;IAE1C,IAAI,CAAC;QACH,8DAA8D;QAC9D,MAAM,GAAG,GAAG,OAAO,CAAC,kBAAkB,CAAoC,CAAC;QAC3E,MAAM,IAAI,GACP,GAA6B,CAAC,OAAO,KAAK,SAAS;YAClD,CAAC,CAAE,GAA4B,CAAC,OAAO;YACvC,CAAC,CAAC,GAAG,CAAC;QACV,IAAI,OAAO,IAAI,KAAK,UAAU,EAAE,CAAC;YAC/B,WAAW,GAAG,IAAgC,CAAC;YAC/C,oBAAoB,GAAG,IAAI,CAAC;QAC9B,CAAC;aAAM,CAAC;YACN,oBAAoB,GAAG,KAAK,CAAC;QAC/B,CAAC;IACH,CAAC;IAAC,MAAM,CAAC;QACP,oBAAoB,GAAG,KAAK,CAAC;IAC/B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,qBAAqB;IACnC,eAAe,EAAE,CAAC;IAClB,OAAO,oBAAoB,KAAK,IAAI,CAAC;AACvC,CAAC;AAED,oCAAoC;AAEpC,MAAM,mBAAmB,GAA2B;IAClD,UAAU,EAAE,wBAAwB;IACpC,GAAG,EAAE,wBAAwB;IAC7B,UAAU,EAAE,wBAAwB;IACpC,GAAG,EAAE,wBAAwB;IAC7B,MAAM,EAAE,oBAAoB;IAC5B,EAAE,EAAE,gBAAgB;IACpB,IAAI,EAAE,kBAAkB;CACzB,CAAC;AAEF;;;GAGG;AACH,MAAM,UAAU,aAAa,CAAC,QAAgB;IAC5C,IAAI,CAAC,qBAAqB,EAAE,IAAI,WAAW,KAAK,IAAI;QAAE,OAAO,IAAI,CAAC;IAElE,MAAM,UAAU,GAAG,mBAAmB,CAAC,QAAQ,CAAC,CAAC;IACjD,IAAI,CAAC,UAAU;QAAE,OAAO,IAAI,CAAC;IAE7B,IAAI,CAAC;QACH,8DAA8D;QAC9D,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU,CAA4B,CAAC;QAElE,kEAAkE;QAClE,IAAI,OAAgB,CAAC;QACrB,IAAI,QAAQ,KAAK,YAAY,IAAI,QAAQ,KAAK,KAAK,EAAE,CAAC;YACpD,OAAO;gBACJ,UAAsD,CAAC,QAAQ,CAAC;oBACjE,UAAU,CAAC,SAAS,CAAC;oBACrB,UAAU,CAAC;QACf,CAAC;aAAM,CAAC;YACN,OAAO,GAAG,UAAU,CAAC,SAAS,CAAC,IAAI,UAAU,CAAC;QAChD,CAAC;QAED,MAAM,MAAM,GAAG,IAAI,WAAY,EAAE,CAAC;QAClC,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;QAC5B,OAAO,MAAM,CAAC;IAChB,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,IAAI,CAAC;IACd,CAAC;AACH,CAAC;AAED,mCAAmC;AAEnC,MAAM,UAAU,IAAI,CAClB,IAAoB,EACpB,OAAoC;IAEpC,OAAO,CAAC,IAAI,CAAC,CAAC;IACd,KAAK,MAAM,KAAK,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;QAClC,IAAI,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IACvB,CAAC;AACH,CAAC;AAED,6BAA6B;AAE7B;;;;;;;GAOG;AACH,MAAM,UAAU,SAAS,CACvB,QAAgB,EAChB,OAAe,EACf,SAA4B;IAE5B,IAAI,CAAC;QACH,OAAO,SAAS,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;IAC9C,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QACb,OAAO;YACL,KAAK,EAAE,EAAE;YACT,KAAK,EAAE,EAAE;YACT,cAAc,EAAE,CAAC;YACjB,SAAS,EAAE,CAAC;YACZ,MAAM,EAAE;gBACN,uBAAuB,QAAQ,KAAK,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;aACvF;SACF,CAAC;IACJ,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAC/B,QAAgB,EAChB,SAA4B;IAE5B,IAAI,OAAe,CAAC;IACpB,IAAI,CAAC;QACH,OAAO,GAAG,YAAY,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;IAC3C,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QACb,OAAO;YACL,KAAK,EAAE,EAAE;YACT,KAAK,EAAE,EAAE;YACT,cAAc,EAAE,CAAC;YACjB,SAAS,EAAE,CAAC;YACZ,MAAM,EAAE;gBACN,kBAAkB,QAAQ,KAAK,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;aAClF;SACF,CAAC;IACJ,CAAC;IACD,OAAO,SAAS,CAAC,QAAQ,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC;AACjD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/extract/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAEpD,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,OAAO,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,gBAAgB,CAAC;CAC9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/extract/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { buildGraph } from './pipeline.js';
|
|
2
|
+
export { FileCache } from './cache.js';
|
|
3
|
+
export { collectFiles } from './detect.js';
|
|
4
|
+
export { buildGraph as buildGraphologyGraph } from './build.js';
|
|
5
|
+
export { detectCommunities } from './cluster.js';
|
|
6
|
+
export { buildAnalysis, godNodes, surprisingConnections, graphStats } from './analyze.js';
|
|
7
|
+
export { saveGraph, loadGraph, graphExists, getGraphPath } from './export.js';
|
|
8
|
+
export { isTreeSitterAvailable, tryLoadParser, parseFile, parseFileFromDisk } from './extract/tree-sitter-runner.js';
|
|
9
|
+
export type { LanguageExtractor } from './extract/types.js';
|
|
10
|
+
export type * from './types.js';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,UAAU,IAAI,oBAAoB,EAAE,MAAM,YAAY,CAAC;AAChE,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,qBAAqB,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1F,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC9E,OAAO,EAAE,qBAAqB,EAAE,aAAa,EAAE,SAAS,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACrH,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,mBAAmB,YAAY,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { buildGraph } from './pipeline.js';
|
|
2
|
+
export { FileCache } from './cache.js';
|
|
3
|
+
export { collectFiles } from './detect.js';
|
|
4
|
+
export { buildGraph as buildGraphologyGraph } from './build.js';
|
|
5
|
+
export { detectCommunities } from './cluster.js';
|
|
6
|
+
export { buildAnalysis, godNodes, surprisingConnections, graphStats } from './analyze.js';
|
|
7
|
+
export { saveGraph, loadGraph, graphExists, getGraphPath } from './export.js';
|
|
8
|
+
export { isTreeSitterAvailable, tryLoadParser, parseFile, parseFileFromDisk } from './extract/tree-sitter-runner.js';
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,UAAU,IAAI,oBAAoB,EAAE,MAAM,YAAY,CAAC;AAChE,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,qBAAqB,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1F,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC9E,OAAO,EAAE,qBAAqB,EAAE,aAAa,EAAE,SAAS,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { BuildOptions, GraphAnalysis, SerializedGraph } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Main entry point for building a knowledge graph from a codebase.
|
|
4
|
+
*
|
|
5
|
+
* Orchestrates file collection, per-file extraction (with caching),
|
|
6
|
+
* graph construction via graphology, community detection, and serialisation.
|
|
7
|
+
*
|
|
8
|
+
* @param projectPath - Absolute path to the root of the codebase to analyse.
|
|
9
|
+
* @param options - Optional build configuration.
|
|
10
|
+
* @returns - Serialized graph + analysis summary.
|
|
11
|
+
*/
|
|
12
|
+
export declare function buildGraph(projectPath: string, options?: BuildOptions): Promise<{
|
|
13
|
+
graph: SerializedGraph;
|
|
14
|
+
analysis: GraphAnalysis;
|
|
15
|
+
}>;
|
|
16
|
+
//# sourceMappingURL=pipeline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline.d.ts","sourceRoot":"","sources":["../../src/pipeline.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,YAAY,EAEZ,aAAa,EACb,eAAe,EAChB,MAAM,YAAY,CAAC;AAiCpB;;;;;;;;;GASG;AACH,wBAAsB,UAAU,CAC9B,WAAW,EAAE,MAAM,EACnB,OAAO,GAAE,YAAiB,GACzB,OAAO,CAAC;IAAE,KAAK,EAAE,eAAe,CAAC;IAAC,QAAQ,EAAE,aAAa,CAAA;CAAE,CAAC,CA0F9D"}
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { join } from 'path';
|
|
2
|
+
import { mkdirSync, readFileSync } from 'fs';
|
|
3
|
+
import { collectFiles } from './detect.js';
|
|
4
|
+
import { FileCache } from './cache.js';
|
|
5
|
+
import { buildGraph as buildGraphologyGraph } from './build.js';
|
|
6
|
+
import { detectCommunities } from './cluster.js';
|
|
7
|
+
import { buildAnalysis } from './analyze.js';
|
|
8
|
+
import { saveGraph } from './export.js';
|
|
9
|
+
import { typescriptExtractor } from './extract/languages/typescript.js';
|
|
10
|
+
import { parseFile } from './extract/tree-sitter-runner.js';
|
|
11
|
+
const DEFAULT_OUTPUT_SUBDIR = '.monobrain/graph';
|
|
12
|
+
// Map language identifiers to the extractors we have available.
|
|
13
|
+
// python and go extractors are loaded lazily when their modules exist.
|
|
14
|
+
const EXTRACTOR_MAP = {
|
|
15
|
+
typescript: typescriptExtractor,
|
|
16
|
+
javascript: typescriptExtractor, // TS extractor handles JS via regex + tree-sitter-javascript
|
|
17
|
+
};
|
|
18
|
+
/** Attempt to load python/go extractors that may be present in the extract/languages dir. */
|
|
19
|
+
async function tryLoadExtractor(language) {
|
|
20
|
+
if (EXTRACTOR_MAP[language])
|
|
21
|
+
return EXTRACTOR_MAP[language];
|
|
22
|
+
try {
|
|
23
|
+
const mod = await import(`./extract/languages/${language}.js`);
|
|
24
|
+
const extractor = (mod[`${language}Extractor`] ?? mod['default']);
|
|
25
|
+
if (extractor)
|
|
26
|
+
EXTRACTOR_MAP[language] = extractor;
|
|
27
|
+
return extractor;
|
|
28
|
+
}
|
|
29
|
+
catch {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Main entry point for building a knowledge graph from a codebase.
|
|
35
|
+
*
|
|
36
|
+
* Orchestrates file collection, per-file extraction (with caching),
|
|
37
|
+
* graph construction via graphology, community detection, and serialisation.
|
|
38
|
+
*
|
|
39
|
+
* @param projectPath - Absolute path to the root of the codebase to analyse.
|
|
40
|
+
* @param options - Optional build configuration.
|
|
41
|
+
* @returns - Serialized graph + analysis summary.
|
|
42
|
+
*/
|
|
43
|
+
export async function buildGraph(projectPath, options = {}) {
|
|
44
|
+
// Resolve output directory
|
|
45
|
+
const outputDir = options.outputDir ?? join(projectPath, DEFAULT_OUTPUT_SUBDIR);
|
|
46
|
+
mkdirSync(outputDir, { recursive: true });
|
|
47
|
+
const cache = new FileCache(outputDir);
|
|
48
|
+
// 1. Collect files
|
|
49
|
+
const files = collectFiles(projectPath, options);
|
|
50
|
+
// 2. Extract nodes/edges from each file (cache-aware)
|
|
51
|
+
const merged = {
|
|
52
|
+
nodes: [],
|
|
53
|
+
edges: [],
|
|
54
|
+
hyperedges: [],
|
|
55
|
+
filesProcessed: 0,
|
|
56
|
+
fromCache: 0,
|
|
57
|
+
errors: [],
|
|
58
|
+
};
|
|
59
|
+
for (const file of files) {
|
|
60
|
+
let content;
|
|
61
|
+
try {
|
|
62
|
+
content = readFileSync(file.path, 'utf-8');
|
|
63
|
+
}
|
|
64
|
+
catch (err) {
|
|
65
|
+
merged.errors.push(`Cannot read ${file.path}: ${String(err)}`);
|
|
66
|
+
continue;
|
|
67
|
+
}
|
|
68
|
+
const cacheKey = cache.key(file.path, content);
|
|
69
|
+
let result = cache.get(cacheKey);
|
|
70
|
+
if (result) {
|
|
71
|
+
merged.fromCache += 1;
|
|
72
|
+
}
|
|
73
|
+
else {
|
|
74
|
+
const extractor = file.language
|
|
75
|
+
? await tryLoadExtractor(file.language)
|
|
76
|
+
: undefined;
|
|
77
|
+
if (extractor) {
|
|
78
|
+
result = parseFile(file.path, content, extractor);
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
result = extractGeneric(file.path, content);
|
|
82
|
+
}
|
|
83
|
+
cache.set(cacheKey, result);
|
|
84
|
+
}
|
|
85
|
+
merged.nodes.push(...result.nodes);
|
|
86
|
+
merged.edges.push(...result.edges);
|
|
87
|
+
if (result.hyperedges)
|
|
88
|
+
merged.hyperedges.push(...result.hyperedges);
|
|
89
|
+
merged.filesProcessed += 1;
|
|
90
|
+
merged.errors.push(...result.errors);
|
|
91
|
+
}
|
|
92
|
+
// 3. Build graphology graph (dedup + stub endpoints)
|
|
93
|
+
const graph = buildGraphologyGraph(merged);
|
|
94
|
+
// 4. Community detection (Louvain with directory-based fallback)
|
|
95
|
+
await detectCommunities(graph);
|
|
96
|
+
// 5. Degree annotation
|
|
97
|
+
graph.forEachNode((id) => {
|
|
98
|
+
graph.setNodeAttribute(id, 'degree', graph.degree(id));
|
|
99
|
+
});
|
|
100
|
+
// 6. Build analysis (god nodes, surprise edges, communities, stats)
|
|
101
|
+
const analysis = buildAnalysis(graph, outputDir);
|
|
102
|
+
// 7. Persist to disk
|
|
103
|
+
saveGraph(graph, outputDir, projectPath);
|
|
104
|
+
// 8. Serialize to the public return type
|
|
105
|
+
const serialized = {
|
|
106
|
+
version: '1.0.0',
|
|
107
|
+
builtAt: new Date().toISOString(),
|
|
108
|
+
projectPath,
|
|
109
|
+
directed: true,
|
|
110
|
+
multigraph: false,
|
|
111
|
+
nodes: graph.nodes().map((id) => ({
|
|
112
|
+
id,
|
|
113
|
+
...graph.getNodeAttributes(id),
|
|
114
|
+
})),
|
|
115
|
+
links: graph.edges().map((edgeId) => ({
|
|
116
|
+
source: graph.source(edgeId),
|
|
117
|
+
target: graph.target(edgeId),
|
|
118
|
+
...graph.getEdgeAttributes(edgeId),
|
|
119
|
+
})),
|
|
120
|
+
};
|
|
121
|
+
return { graph: serialized, analysis };
|
|
122
|
+
}
|
|
123
|
+
// ---------------------------------------------------------------------------
|
|
124
|
+
// Internal: minimal fallback for languages without a dedicated extractor
|
|
125
|
+
// ---------------------------------------------------------------------------
|
|
126
|
+
function extractGeneric(filePath, content) {
|
|
127
|
+
return {
|
|
128
|
+
nodes: [
|
|
129
|
+
{
|
|
130
|
+
id: filePath,
|
|
131
|
+
label: filePath.split('/').pop() ?? filePath,
|
|
132
|
+
fileType: 'code',
|
|
133
|
+
sourceFile: filePath,
|
|
134
|
+
linesOfCode: content.split('\n').length,
|
|
135
|
+
},
|
|
136
|
+
],
|
|
137
|
+
edges: [],
|
|
138
|
+
filesProcessed: 1,
|
|
139
|
+
fromCache: 0,
|
|
140
|
+
errors: [],
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
//# sourceMappingURL=pipeline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline.js","sourceRoot":"","sources":["../../src/pipeline.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
export type Confidence = 'EXTRACTED' | 'INFERRED' | 'AMBIGUOUS';
|
|
2
|
+
export type FileType = 'code' | 'document' | 'paper' | 'image' | 'unknown';
|
|
3
|
+
export interface GraphNode {
|
|
4
|
+
id: string;
|
|
5
|
+
label: string;
|
|
6
|
+
fileType: FileType;
|
|
7
|
+
sourceFile: string;
|
|
8
|
+
sourceLocation?: string;
|
|
9
|
+
community?: number;
|
|
10
|
+
degree?: number;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
}
|
|
13
|
+
export interface GraphEdge {
|
|
14
|
+
source: string;
|
|
15
|
+
target: string;
|
|
16
|
+
relation: string;
|
|
17
|
+
confidence: Confidence;
|
|
18
|
+
confidenceScore?: number;
|
|
19
|
+
sourceFile?: string;
|
|
20
|
+
sourceLocation?: string;
|
|
21
|
+
weight?: number;
|
|
22
|
+
}
|
|
23
|
+
export interface ExtractionResult {
|
|
24
|
+
nodes: GraphNode[];
|
|
25
|
+
edges: GraphEdge[];
|
|
26
|
+
hyperedges?: HyperEdge[];
|
|
27
|
+
filesProcessed: number;
|
|
28
|
+
fromCache: number;
|
|
29
|
+
errors: string[];
|
|
30
|
+
}
|
|
31
|
+
export interface HyperEdge {
|
|
32
|
+
label: string;
|
|
33
|
+
nodes: string[];
|
|
34
|
+
confidence: Confidence;
|
|
35
|
+
confidenceScore?: number;
|
|
36
|
+
}
|
|
37
|
+
export interface GraphAnalysis {
|
|
38
|
+
godNodes: GodNode[];
|
|
39
|
+
surprises: SurpriseEdge[];
|
|
40
|
+
communities: Record<number, string[]>;
|
|
41
|
+
stats: GraphStats;
|
|
42
|
+
}
|
|
43
|
+
export interface GodNode {
|
|
44
|
+
id: string;
|
|
45
|
+
label: string;
|
|
46
|
+
degree: number;
|
|
47
|
+
community?: number;
|
|
48
|
+
sourceFile: string;
|
|
49
|
+
neighbors: string[];
|
|
50
|
+
}
|
|
51
|
+
export interface SurpriseEdge {
|
|
52
|
+
from: string;
|
|
53
|
+
fromCommunity: number;
|
|
54
|
+
fromFile: string;
|
|
55
|
+
to: string;
|
|
56
|
+
toCommunity: number;
|
|
57
|
+
toFile: string;
|
|
58
|
+
relation: string;
|
|
59
|
+
confidence: Confidence;
|
|
60
|
+
score: number;
|
|
61
|
+
}
|
|
62
|
+
export interface GraphStats {
|
|
63
|
+
nodes: number;
|
|
64
|
+
edges: number;
|
|
65
|
+
communities: number;
|
|
66
|
+
confidence: Record<Confidence, number>;
|
|
67
|
+
fileTypes: Record<string, number>;
|
|
68
|
+
topRelations: Record<string, number>;
|
|
69
|
+
isDirected: boolean;
|
|
70
|
+
graphPath?: string;
|
|
71
|
+
}
|
|
72
|
+
export interface SerializedGraph {
|
|
73
|
+
version: string;
|
|
74
|
+
builtAt: string;
|
|
75
|
+
projectPath: string;
|
|
76
|
+
nodes: Array<{
|
|
77
|
+
id: string;
|
|
78
|
+
} & Record<string, unknown>>;
|
|
79
|
+
links: Array<{
|
|
80
|
+
source: string;
|
|
81
|
+
target: string;
|
|
82
|
+
} & Record<string, unknown>>;
|
|
83
|
+
directed: boolean;
|
|
84
|
+
multigraph: boolean;
|
|
85
|
+
}
|
|
86
|
+
export interface BuildOptions {
|
|
87
|
+
codeOnly?: boolean;
|
|
88
|
+
outputDir?: string;
|
|
89
|
+
maxFileSizeBytes?: number;
|
|
90
|
+
excludePatterns?: string[];
|
|
91
|
+
languages?: string[];
|
|
92
|
+
}
|
|
93
|
+
export interface ClassifiedFile {
|
|
94
|
+
path: string;
|
|
95
|
+
fileType: FileType;
|
|
96
|
+
language?: string;
|
|
97
|
+
sizeBytes: number;
|
|
98
|
+
}
|
|
99
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/.pnpm/graphology-types@0.24.8/node_modules/graphology-types/index.d.ts","../../../../node_modules/.pnpm/graphology@0.25.4_graphology-types@0.24.8/node_modules/graphology/dist/graphology.d.ts","../src/types.ts","../src/analyze.ts","../src/build.ts","../src/cache.ts","../../../../node_modules/.pnpm/graphology-communities-louvain@2.0.2_graphology-types@0.24.8/node_modules/graphology-communities-louvain/index.d.ts","../src/cluster.ts","../src/detect.ts","../src/export.ts","../src/extract/types.ts","../src/extract/tree-sitter-runner.ts","../src/extract/languages/typescript.ts","../src/pipeline.ts","../src/index.ts","../src/extract/languages/python.ts","../src/extract/languages/go.ts","../src/extract/languages/rust.ts","../src/extract/index.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/compatibility/disposable.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/compatibility/indexable.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/compatibility/index.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/inspector.generated.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/sea.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/test.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@20.19.39/node_modules/@types/node/index.d.ts","../../../../node_modules/.pnpm/@types+bcrypt@5.0.2/node_modules/@types/bcrypt/index.d.ts","../../../../node_modules/@types/deep-eql/index.d.ts","../../../../node_modules/assertion-error/index.d.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/estree/index.d.ts"],"fileIdsList":[[82,129,177],[82,126,129],[82,128,129],[129],[82,129,134,162],[82,129,130,135,140,148,159,170],[82,129,130,131,140,148],[82,129],[77,78,79,82,129],[82,129,132,171],[82,129,133,134,141,149],[82,129,134,159,167],[82,129,135,137,140,148],[82,128,129,136],[82,129,137,138],[82,129,139,140],[82,128,129,140],[82,129,140,141,142,159,170],[82,129,140,141,142,155,159,162],[82,129,137,140,143,148,159,170],[82,129,140,141,143,144,148,159,167,170],[82,129,143,145,159,167,170],[80,81,82,83,84,85,86,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176],[82,129,140,146],[82,129,147,170,175],[82,129,137,140,148,159],[82,129,149],[82,129,150],[82,128,129,151],[82,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176],[82,129,153],[82,129,154],[82,129,140,155,156],[82,129,155,157,171,173],[82,129,140,159,160,162],[82,129,161,162],[82,129,159,160],[82,129,162],[82,129,163],[82,126,129,159,164],[82,129,140,165,166],[82,129,165,166],[82,129,134,148,159,167],[82,129,168],[82,129,148,169],[82,129,143,154,170],[82,129,134,171],[82,129,159,172],[82,129,147,173],[82,129,174],[82,124,129],[82,124,129,140,142,151,159,162,170,173,175],[82,129,159,176],[58,82,129],[82,96,100,129,170],[82,96,129,159,170],[82,91,129],[82,93,96,129,167,170],[82,129,148,167],[82,91,129,177],[82,93,96,129,148,170],[82,88,89,92,95,129,140,159,170],[82,96,103,129],[82,88,94,129],[82,96,117,118,129],[82,92,96,129,162,170,177],[82,117,129,177],[82,90,91,129,177],[82,96,129],[82,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,129],[82,96,111,129],[82,96,103,104,129],[82,94,96,104,105,129],[82,95,129],[82,88,91,96,129],[82,96,100,104,105,129],[82,100,129],[82,94,96,99,129,170],[82,88,93,96,103,129],[82,129,159],[82,91,96,117,129,175,177],[82,129,179,180],[59,60,82,129],[60,82,129,134,141,150],[59,64,82,129],[60,82,129,141,150],[59,60,82,129,141,150],[60,63,68,69,70,73,74,75,82,129,141,150],[60,68,69,82,129,150],[60,68,82,129,141],[60,82,129],[60,61,62,63,65,66,67,68,69,71,82,129],[60,61,62,63,65,66,67,68,69,70,82,129,141,150]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"0cca09de16d2922f69d749aeeb619713345eea2b3169e29b18df8a33528d8d7e","impliedFormat":1},{"version":"91f902e15d203efb3b578f42777b5557fad11786073403490faf56632a101bb0","impliedFormat":1},{"version":"1fa2270a6d07b14db8a807d1d15b8163a88966952df995bc6871cdfd02a87e8f","signature":"7d07e2c4efd41cac3445cfef4d8d155bcb011fa7a1c94483cdfa4c5310ccb3fe"},{"version":"6a2cebd93452342dc1323d0c94d042cb13d435226a51e4fb1d4880e89e07dbdd","signature":"b7acf90b72d736818e31880e5e557941816e0d9a3b2db9cbacc1088d7b56e4d3"},{"version":"89bbd46c3c211c9c4c68e46ad453014a444aaf87b86e6607cae5cdc38cff7509","signature":"9cb2da0b392dd5701319795c477951108e63fc734c2c97255f0622cf1decd90b"},{"version":"1a513c4827eec72baffb6c3ae3d311cd2f9a2601f12ef81908685caec60c99ba","signature":"0d0f35b24d7e36dc89ed213815a3ba8ef72c69d226c33c9c00350fe32e7b6907"},{"version":"42fd0f8131a793d3eb8917e077c018834cbac14f16978302659fc2d2c9e87bf2","impliedFormat":1},{"version":"a98bee31652567e747cfe2ae863c5dcaf3693434f5bca564f5016e03b87a3412","signature":"918ef63d6232ae6b1dd26197d008f94a3fe4b46590e15c24c10de6122bcca7d0"},{"version":"04df5bf171f28d0a050db0e8227185da0f51d663e0367977ec2c52d50af38f5a","signature":"a83be16d9a93da11dc68f586709c7b79af3dcb99ae0c831c7faf633414be0a56"},{"version":"70758ae7f5b190e897098ff68df4c8432a207925218d44530711d8c1b19f2c42","signature":"77d7d709ae61f5c08faea5b0d0cfc04c417fe96873846434f51f3aaf8e7d4bb5"},{"version":"7992f6a2a8a1763faec50b1a4213f268f6870b2f73c13b2d2c3ca35962dcb35d","signature":"d82201bdfe9bc5cca82c6f4e027b27920b9266ebc43892b823bd8f1018ecc29f"},{"version":"0a0c8610299aff29eb1d3eb532f8013a91820a1b1b5328e0e2efa1f0e7a62b8c","signature":"f4f9c4ea730ba2a15c1b85095f8025469cef71ac083ae2c06c9cc04203df1e5e"},{"version":"32165ce8fa966d9da34da0c596bcbf62f861b00483ade4f6ceab448e0934a09b","signature":"fdf86e0650c5511640b9d8128121cb23a05007239c6f5da0bcf1a7b5eccf9fa9"},{"version":"216f95ca898c171d8830137610a9e3f44b45aa6eefd206beb1b4ead08451fc07","signature":"cd86c8b1cd431d86ded5a33877f40f827df768f9e0a4edef6b3b54779371784a"},"8eb0038f8dc8207374426cf9f14399bcb47cba884ea62dda7603103c443b0cca",{"version":"7a5eeefb4a55bddc0fee508ed5ddb802eac6569a6354df26539936c7f6e26e3e","signature":"3fd5b57700a0904375469c7cd6ef58fef033342bbf28ca22d486af4c8a67449f"},{"version":"a84884fadf9beb08ae69b43b371abe6c342d22c461fb6b9931df368692a253d9","signature":"e57e64dc2401e06fc49a28018a7b47206d868c38468358681168f60a29cfa0a3"},{"version":"fa3178051db3278a9351a262c9e03ae89042a00f9cde835fd46db6c3edecac61","signature":"498d9147c7d6cd4998bfb08d833aae7bbf050651ee6ffa6c61ee337820e902c4"},{"version":"4c24197a86a49cccb418dcbfe9ae4ebf1642512a268a645cde329b478d7dcd6d","signature":"800bc2837446e29b68f804f98dfe750742e522d43105bee98faf5a4e21157d0a"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1},{"version":"160b24efb5a868df9c54f337656b4ef55fcbe0548fe15408e1c0630ec559c559","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1}],"root":[[60,63],[65,76]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[178,1],[126,2],[127,2],[128,3],[82,4],[129,5],[130,6],[131,7],[77,8],[80,9],[78,8],[79,8],[132,10],[133,11],[134,12],[135,13],[136,14],[137,15],[138,15],[139,16],[140,17],[141,18],[142,19],[83,8],[81,8],[143,20],[144,21],[145,22],[177,23],[146,24],[147,25],[148,26],[149,27],[150,28],[151,29],[152,30],[153,31],[154,32],[155,33],[156,33],[157,34],[158,8],[159,35],[161,36],[160,37],[162,38],[163,39],[164,40],[165,41],[166,42],[167,43],[168,44],[169,45],[170,46],[171,47],[172,48],[173,49],[174,50],[84,8],[85,8],[86,8],[125,51],[175,52],[176,53],[87,8],[64,54],[58,8],[59,54],[56,8],[57,8],[11,8],[10,8],[2,8],[12,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[3,8],[20,8],[21,8],[4,8],[22,8],[26,8],[23,8],[24,8],[25,8],[27,8],[28,8],[29,8],[5,8],[30,8],[31,8],[32,8],[33,8],[6,8],[37,8],[34,8],[35,8],[36,8],[38,8],[7,8],[39,8],[44,8],[45,8],[40,8],[41,8],[42,8],[43,8],[8,8],[49,8],[46,8],[47,8],[48,8],[50,8],[9,8],[51,8],[52,8],[53,8],[55,8],[54,8],[1,8],[103,55],[113,56],[102,55],[123,57],[94,58],[93,59],[122,1],[116,60],[121,61],[96,62],[110,63],[95,64],[119,65],[91,66],[90,1],[120,67],[92,68],[97,69],[98,8],[101,69],[88,8],[124,70],[114,71],[105,72],[106,73],[108,74],[104,75],[107,76],[117,1],[99,77],[100,78],[109,79],[89,80],[112,71],[111,69],[115,8],[118,81],[181,82],[179,8],[182,8],[180,8],[61,83],[62,83],[63,84],[65,85],[66,86],[67,87],[76,88],[74,89],[73,89],[75,89],[70,89],[69,90],[68,91],[72,92],[71,93],[60,8]],"latestChangedDtsFile":"./src/extract/index.d.ts","version":"5.9.3"}
|