forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@copilotkit/runtime-client-gql",
"private": false,
"homepage": "https://github.com/CopilotKit/CopilotKit",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"publishConfig": {
"access": "public"
},
"version": "1.0.9",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch --no-splitting",
"test": "jest --passWithNoTests",
"check-types": "tsc --noEmit",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next",
"graphql-codegen": "graphql-codegen",
"graphql-codegen:watch": "graphql-codegen --watch",
"link:global": "pnpm link --global",
"unlink:global": "pnpm unlink --global"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript": "^4.0.7",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@graphql-codegen/urql-introspection": "^3.0.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.4.1",
"@types/node": "^20.12.12",
"esbuild": "^0.23.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^6.7.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@copilotkit/runtime": "workspace:*",
"@copilotkit/shared": "workspace:*",
"@urql/core": "^5.0.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"graphql": "^16.8.1",
"untruncate-json": "^0.0.1",
"urql": "^4.1.0",
"wonka": "^6.3.4"
},
"keywords": [
"copilotkit",
"copilot",
"react",
"nextjs",
"nodejs",
"ai",
"assistant",
"javascript",
"automation",
"textarea"
]
}