@modality-counter/core 0.6.1 → 0.6.3

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.
@@ -1,14 +1,18 @@
1
- export { DeepWiki } from "./util_scripts/DeepWiki";
2
1
  export { MAX_CHAR_LENGTH } from "./confs/const";
3
2
  export { isGoogleBotDomain } from "./confs/domain-config";
4
- export { getPagination, needsChunking, getChunk, } from "./util_scripts/pagination";
5
3
  export { DEPLOY_METHOD_TOOL } from "./confs/const.js";
6
- export { getCounterContent, getAllCounterItems, type CounterContent } from "./util_counter_data";
4
+ /**
5
+ * util_scripts
6
+ */
7
+ export { DeepWiki } from "./util_scripts/DeepWiki";
8
+ export { recursiveScanForFiles, type ScannedFile, } from "./util_scripts/recursiveScanForFiles";
9
+ export { getPagination, needsChunking, getChunk, } from "./util_scripts/pagination";
10
+ export { getCounterContent, getAllCounterItems, type CounterContent, } from "./util_counter_data";
7
11
  export { setupMcpCounter } from "./mcp_counter";
8
12
  export { validateMethodFile } from "./schemas/methodology-validation.js";
9
13
  export { validateTemplateFile } from "./schemas/template-validation.js";
10
14
  export { validateProtocolFile } from "./schemas/protocol-validation.js";
11
- export { extractCodeBlocks, readMdxPrompt, readMdxYaml, readPrompt } from "./util_prompts";
15
+ export { extractCodeBlocks, readMdxPrompt, readMdxYaml, readPrompt, } from "./util_prompts";
12
16
  export { readMdx, importMdx } from "./util_mdx";
13
17
  /**
14
18
  * Test setups
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.6.1",
2
+ "version": "0.6.3",
3
3
  "name": "@modality-counter/core",
4
4
  "repository": {
5
5
  "type": "git",
@@ -1 +0,0 @@
1
- export { recursiveScanForFiles, type ScannedFile } from "./recursiveScanForFiles";