@copilotkit/runtime-client-gql 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.
Files changed (1) hide show
  1. package/package.json +19 -19
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
- "version": "1.50.0-beta.0",
12
+ "version": "1.50.0-beta.1",
13
13
  "sideEffects": false,
14
14
  "main": "./dist/index.js",
15
15
  "module": "./dist/index.mjs",
@@ -22,23 +22,10 @@
22
22
  },
23
23
  "types": "./dist/index.d.ts",
24
24
  "license": "MIT",
25
- "scripts": {
26
- "build": "pnpm run graphql-codegen && tsup --clean",
27
- "dev": "concurrently \"pnpm run graphql-codegen:watch\" \"tsup --watch --no-splitting\"",
28
- "test": "vitest run",
29
- "test:watch": "vitest",
30
- "check-types": "tsc --noEmit",
31
- "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf ./src/graphql/@generated && rm -rf dist && rm -rf .next",
32
- "graphql-codegen": "graphql-codegen -c codegen.ts",
33
- "graphql-codegen:watch": "graphql-codegen -c codegen.ts --watch",
34
- "link:global": "pnpm link --global",
35
- "unlink:global": "pnpm unlink --global"
36
- },
37
25
  "peerDependencies": {
38
26
  "react": "^18 || ^19 || ^19.0.0-rc"
39
27
  },
40
28
  "devDependencies": {
41
- "@copilotkit/runtime": "workspace:*",
42
29
  "@graphql-codegen/cli": "^5.0.2",
43
30
  "@graphql-codegen/client-preset": "^4.2.6",
44
31
  "@graphql-codegen/introspection": "^4.0.3",
@@ -57,13 +44,14 @@
57
44
  "ts-node": "^10.9.2",
58
45
  "tsup": "^6.7.0",
59
46
  "typescript": "^5.4.5",
60
- "vitest": "^3.1.3"
47
+ "vitest": "^3.1.3",
48
+ "@copilotkit/runtime": "1.50.0-beta.1"
61
49
  },
62
50
  "dependencies": {
63
- "@copilotkit/shared": "workspace:*",
64
51
  "@urql/core": "^5.0.3",
65
52
  "untruncate-json": "^0.0.1",
66
- "urql": "^4.1.0"
53
+ "urql": "^4.1.0",
54
+ "@copilotkit/shared": "1.50.0-beta.1"
67
55
  },
68
56
  "keywords": [
69
57
  "copilotkit",
@@ -76,5 +64,17 @@
76
64
  "javascript",
77
65
  "automation",
78
66
  "textarea"
79
- ]
80
- }
67
+ ],
68
+ "scripts": {
69
+ "build": "pnpm run graphql-codegen && tsup --clean",
70
+ "dev": "concurrently \"pnpm run graphql-codegen:watch\" \"tsup --watch --no-splitting\"",
71
+ "test": "vitest run",
72
+ "test:watch": "vitest",
73
+ "check-types": "tsc --noEmit",
74
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf ./src/graphql/@generated && rm -rf dist && rm -rf .next",
75
+ "graphql-codegen": "graphql-codegen -c codegen.ts",
76
+ "graphql-codegen:watch": "graphql-codegen -c codegen.ts --watch",
77
+ "link:global": "pnpm link --global",
78
+ "unlink:global": "pnpm unlink --global"
79
+ }
80
+ }