@fluidframework/tree-agent 2.74.0-368706 → 2.74.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/CHANGELOG.md +4 -0
- package/eslint.config.mts +51 -0
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/**
|
|
3
|
+
* GENERATED FILE - DO NOT EDIT DIRECTLY.
|
|
4
|
+
* To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
|
|
5
|
+
*/
|
|
6
|
+
import type { Linter } from "eslint";
|
|
7
|
+
import { strict } from "../../../common/build/eslint-config-fluid/flat.mts";
|
|
8
|
+
|
|
9
|
+
const config: Linter.Config[] = [
|
|
10
|
+
...strict,
|
|
11
|
+
{
|
|
12
|
+
rules: {
|
|
13
|
+
"import-x/no-internal-modules": [
|
|
14
|
+
"error",
|
|
15
|
+
{
|
|
16
|
+
"allow": [
|
|
17
|
+
"@fluidframework/*/alpha",
|
|
18
|
+
"@fluidframework/*/beta",
|
|
19
|
+
"@fluidframework/*/legacy",
|
|
20
|
+
"@fluidframework/*/internal",
|
|
21
|
+
],
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
files: ["src/test/**/*"],
|
|
28
|
+
languageOptions: {
|
|
29
|
+
parserOptions: {
|
|
30
|
+
projectService: false,
|
|
31
|
+
project: ["./src/test/tsconfig.json"],
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
rules: {
|
|
35
|
+
"import-x/no-internal-modules": [
|
|
36
|
+
"error",
|
|
37
|
+
{
|
|
38
|
+
"allow": [
|
|
39
|
+
"*/index.js",
|
|
40
|
+
"@fluidframework/*/alpha",
|
|
41
|
+
"@fluidframework/*/beta",
|
|
42
|
+
"@fluidframework/*/legacy",
|
|
43
|
+
"@fluidframework/*/internal",
|
|
44
|
+
],
|
|
45
|
+
},
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/tree-agent",
|
|
3
|
-
"version": "2.74.0
|
|
3
|
+
"version": "2.74.0",
|
|
4
4
|
"description": "Experimental package to simplify integrating AI into Fluid-based applications",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -70,24 +70,24 @@
|
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
73
|
-
"@fluidframework/core-utils": "2.74.0
|
|
74
|
-
"@fluidframework/runtime-utils": "2.74.0
|
|
75
|
-
"@fluidframework/telemetry-utils": "2.74.0
|
|
76
|
-
"@fluidframework/tree": "2.74.0
|
|
73
|
+
"@fluidframework/core-utils": "~2.74.0",
|
|
74
|
+
"@fluidframework/runtime-utils": "~2.74.0",
|
|
75
|
+
"@fluidframework/telemetry-utils": "~2.74.0",
|
|
76
|
+
"@fluidframework/tree": "~2.74.0",
|
|
77
77
|
"uuid": "^11.1.0",
|
|
78
78
|
"zod": "^3.25.32"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
82
82
|
"@biomejs/biome": "~1.9.3",
|
|
83
|
-
"@fluid-internal/mocha-test-setup": "2.74.0
|
|
84
|
-
"@fluid-tools/build-cli": "^0.
|
|
83
|
+
"@fluid-internal/mocha-test-setup": "~2.74.0",
|
|
84
|
+
"@fluid-tools/build-cli": "^0.61.0",
|
|
85
85
|
"@fluidframework/build-common": "^2.0.3",
|
|
86
|
-
"@fluidframework/build-tools": "^0.
|
|
87
|
-
"@fluidframework/eslint-config-fluid": "2.74.0
|
|
88
|
-
"@fluidframework/id-compressor": "2.74.0
|
|
89
|
-
"@fluidframework/runtime-utils": "2.74.0
|
|
90
|
-
"@fluidframework/test-runtime-utils": "2.74.0
|
|
86
|
+
"@fluidframework/build-tools": "^0.61.0",
|
|
87
|
+
"@fluidframework/eslint-config-fluid": "~2.74.0",
|
|
88
|
+
"@fluidframework/id-compressor": "~2.74.0",
|
|
89
|
+
"@fluidframework/runtime-utils": "~2.74.0",
|
|
90
|
+
"@fluidframework/test-runtime-utils": "~2.74.0",
|
|
91
91
|
"@langchain/anthropic": "^0.3.24",
|
|
92
92
|
"@langchain/core": "^0.3.78",
|
|
93
93
|
"@langchain/google-genai": "^0.2.16",
|
|
@@ -102,6 +102,7 @@
|
|
|
102
102
|
"cross-env": "^7.0.3",
|
|
103
103
|
"eslint": "~8.57.1",
|
|
104
104
|
"eslint-config-prettier": "~10.1.8",
|
|
105
|
+
"jiti": "^2.6.1",
|
|
105
106
|
"mocha": "^10.8.2",
|
|
106
107
|
"mocha-multi-reporters": "^1.5.1",
|
|
107
108
|
"prettier": "~3.6.2",
|