@copilotkit/runtime 1.50.0-beta.0 → 1.50.0-beta.1
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 +18 -18
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
-
"version": "1.50.0-beta.
|
|
12
|
+
"version": "1.50.0-beta.1",
|
|
13
13
|
"sideEffects": false,
|
|
14
14
|
"main": "./dist/index.js",
|
|
15
15
|
"module": "./dist/index.mjs",
|
|
@@ -27,16 +27,6 @@
|
|
|
27
27
|
},
|
|
28
28
|
"types": "./dist/index.d.ts",
|
|
29
29
|
"license": "MIT",
|
|
30
|
-
"scripts": {
|
|
31
|
-
"build": "tsup --onSuccess \"pnpm run generate-graphql-schema\"",
|
|
32
|
-
"dev": "tsup --watch --onSuccess \"pnpm run generate-graphql-schema\"",
|
|
33
|
-
"test": "jest --passWithNoTests",
|
|
34
|
-
"check-types": "tsc --noEmit",
|
|
35
|
-
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next && rm -rf __snapshots__",
|
|
36
|
-
"generate-graphql-schema": "rm -rf __snapshots__ && ts-node ./scripts/generate-gql-schema.ts",
|
|
37
|
-
"link:global": "pnpm link --global",
|
|
38
|
-
"unlink:global": "pnpm unlink --global"
|
|
39
|
-
},
|
|
40
30
|
"devDependencies": {
|
|
41
31
|
"@jest/globals": "^29.7.0",
|
|
42
32
|
"@swc/core": "1.5.28",
|
|
@@ -44,20 +34,19 @@
|
|
|
44
34
|
"@types/node": "^18.11.17",
|
|
45
35
|
"@whatwg-node/server": "^0.9.34",
|
|
46
36
|
"eslint": "^8.56.0",
|
|
47
|
-
"eslint-config-custom": "workspace:*",
|
|
48
37
|
"jest": "^29.6.4",
|
|
49
38
|
"nodemon": "^3.1.3",
|
|
50
39
|
"ts-jest": "^29.1.1",
|
|
51
40
|
"ts-node": "^10.9.2",
|
|
52
|
-
"tsconfig": "workspace:*",
|
|
53
41
|
"tsup": "^6.7.0",
|
|
54
42
|
"typescript": "^5.2.3",
|
|
55
43
|
"vitest": "^3.2.4",
|
|
56
|
-
"zod-to-json-schema": "^3.23.5"
|
|
44
|
+
"zod-to-json-schema": "^3.23.5",
|
|
45
|
+
"eslint-config-custom": "1.4.6",
|
|
46
|
+
"tsconfig": "1.4.6"
|
|
57
47
|
},
|
|
58
48
|
"dependencies": {
|
|
59
49
|
"@anthropic-ai/sdk": "^0.57.0",
|
|
60
|
-
"@copilotkit/shared": "workspace:*",
|
|
61
50
|
"@copilotkitnext/agent": "0.0.22",
|
|
62
51
|
"@copilotkitnext/runtime": "0.0.22",
|
|
63
52
|
"@graphql-yoga/plugin-defer-stream": "^3.3.1",
|
|
@@ -84,7 +73,8 @@
|
|
|
84
73
|
"reflect-metadata": "^0.2.2",
|
|
85
74
|
"rxjs": "7.8.1",
|
|
86
75
|
"type-graphql": "2.0.0-rc.1",
|
|
87
|
-
"zod": "^3.23.3"
|
|
76
|
+
"zod": "^3.23.3",
|
|
77
|
+
"@copilotkit/shared": "1.50.0-beta.1"
|
|
88
78
|
},
|
|
89
79
|
"peerDependencies": {
|
|
90
80
|
"@ag-ui/client": ">=0.0.39",
|
|
@@ -104,5 +94,15 @@
|
|
|
104
94
|
"javascript",
|
|
105
95
|
"automation",
|
|
106
96
|
"textarea"
|
|
107
|
-
]
|
|
108
|
-
|
|
97
|
+
],
|
|
98
|
+
"scripts": {
|
|
99
|
+
"build": "tsup --onSuccess \"pnpm run generate-graphql-schema\"",
|
|
100
|
+
"dev": "tsup --watch --onSuccess \"pnpm run generate-graphql-schema\"",
|
|
101
|
+
"test": "jest --passWithNoTests",
|
|
102
|
+
"check-types": "tsc --noEmit",
|
|
103
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next && rm -rf __snapshots__",
|
|
104
|
+
"generate-graphql-schema": "rm -rf __snapshots__ && ts-node ./scripts/generate-gql-schema.ts",
|
|
105
|
+
"link:global": "pnpm link --global",
|
|
106
|
+
"unlink:global": "pnpm unlink --global"
|
|
107
|
+
}
|
|
108
|
+
}
|