managed-deepagents 0.5.3-dev.109 → 0.5.3-dev.110
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 +9 -8
- package/types/index.d.ts +6 -0
- package/types/markdown-md.d.ts +14 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "managed-deepagents",
|
|
3
|
-
"version": "0.5.3-dev.
|
|
3
|
+
"version": "0.5.3-dev.110",
|
|
4
4
|
"description": "Managed Deep Agents — the `defineDeepAgent` authoring interface plus the CLI that compiles and deploys a code-first Deep Agent repository to a managed LangGraph runtime.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"langchain",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"bin/mda.mjs"
|
|
38
38
|
],
|
|
39
39
|
"scripts": {
|
|
40
|
-
"build": "
|
|
40
|
+
"build": "node scripts/build.mjs",
|
|
41
|
+
"compile": "tsc -p tsconfig.json",
|
|
41
42
|
"clean": "rm -rf dist",
|
|
42
43
|
"format": "oxfmt --config ../../.oxfmtrc.jsonc --write src",
|
|
43
44
|
"format:check": "oxfmt --config ../../.oxfmtrc.jsonc --check src",
|
|
@@ -65,12 +66,12 @@
|
|
|
65
66
|
"zod": "^4.4.3"
|
|
66
67
|
},
|
|
67
68
|
"optionalDependencies": {
|
|
68
|
-
"@langchain/managed-deepagents-darwin-arm64": "0.5.3-dev.
|
|
69
|
-
"@langchain/managed-deepagents-darwin-x64": "0.5.3-dev.
|
|
70
|
-
"@langchain/managed-deepagents-linux-arm64": "0.5.3-dev.
|
|
71
|
-
"@langchain/managed-deepagents-linux-x64": "0.5.3-dev.
|
|
72
|
-
"@langchain/managed-deepagents-win32-arm64": "0.5.3-dev.
|
|
73
|
-
"@langchain/managed-deepagents-win32-x64": "0.5.3-dev.
|
|
69
|
+
"@langchain/managed-deepagents-darwin-arm64": "0.5.3-dev.110",
|
|
70
|
+
"@langchain/managed-deepagents-darwin-x64": "0.5.3-dev.110",
|
|
71
|
+
"@langchain/managed-deepagents-linux-arm64": "0.5.3-dev.110",
|
|
72
|
+
"@langchain/managed-deepagents-linux-x64": "0.5.3-dev.110",
|
|
73
|
+
"@langchain/managed-deepagents-win32-arm64": "0.5.3-dev.110",
|
|
74
|
+
"@langchain/managed-deepagents-win32-x64": "0.5.3-dev.110"
|
|
74
75
|
},
|
|
75
76
|
"devDependencies": {
|
|
76
77
|
"@types/node": "^26.1.1",
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference path="./markdown-md.d.ts" />
|
|
2
|
+
|
|
3
|
+
// Re-export the implementation specifier; NodeNext resolves it to the adjacent
|
|
4
|
+
// `.d.ts`. Importing `../dist/index.d.ts` directly is invalid (TS2846) for
|
|
5
|
+
// consumers that do not enable `skipLibCheck`.
|
|
6
|
+
export * from "../dist/index.js";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ambient typings for MDA text-module imports.
|
|
3
|
+
*
|
|
4
|
+
* The CLI inlines `import … from "./file.md" with { type: "text" }` into a
|
|
5
|
+
* string constant at compile time. This declaration makes the same import
|
|
6
|
+
* type-check in authoring projects without a local `*.md` ambient module.
|
|
7
|
+
*
|
|
8
|
+
* Pulled in via `types/index.d.ts` (the package `"types"` entry) so importing
|
|
9
|
+
* `managed-deepagents` loads it automatically.
|
|
10
|
+
*/
|
|
11
|
+
declare module "*.md" {
|
|
12
|
+
const content: string;
|
|
13
|
+
export default content;
|
|
14
|
+
}
|