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
128 lines (128 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.22 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@copilotkit/react-native",
"version": "1.61.2",
"private": false,
"keywords": [
"ai",
"assistant",
"copilot",
"copilotkit",
"mobile",
"react-native"
],
"homepage": "https://github.com/CopilotKit/CopilotKit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"type": "module",
"sideEffects": [
"./dist/index.*",
"./dist/polyfills.*",
"./dist/polyfills/**/*"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./polyfills": {
"import": "./dist/polyfills.mjs",
"require": "./dist/polyfills.cjs"
},
"./polyfills/streams": {
"import": "./dist/polyfills/streams.mjs",
"require": "./dist/polyfills/streams.cjs"
},
"./polyfills/encoding": {
"import": "./dist/polyfills/encoding.mjs",
"require": "./dist/polyfills/encoding.cjs"
},
"./polyfills/crypto": {
"import": "./dist/polyfills/crypto.mjs",
"require": "./dist/polyfills/crypto.cjs"
},
"./polyfills/dom": {
"import": "./dist/polyfills/dom.mjs",
"require": "./dist/polyfills/dom.cjs"
},
"./polyfills/location": {
"import": "./dist/polyfills/location.mjs",
"require": "./dist/polyfills/location.cjs"
},
"./components": {
"import": "./dist/components/index.mjs",
"require": "./dist/components/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"check-types": "tsc --noEmit",
"publint": "publint .",
"attw": "attw --pack . --profile node16 --ignore-rules internal-resolution-error",
"link:global": "pnpm link --global",
"unlink:global": "pnpm unlink --global"
},
"dependencies": {
"@ag-ui/client": "0.0.57",
"@copilotkit/core": "workspace:*",
"@copilotkit/react-core": "workspace:*",
"@copilotkit/shared": "workspace:*",
"text-encoding": "^0.7.0",
"web-streams-polyfill": "^4.2.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.0",
"jsdom": "^26.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsdown": "^0.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@gorhom/bottom-sheet": "^5.0.0",
"expo-document-picker": ">=12.0.0",
"expo-file-system": ">=17.0.0",
"react": "^18 || ^19",
"react-native": ">=0.70",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": ">=3.0.0",
"react-native-streamdown": ">=0.1.0",
"zod": ">=3.0.0"
},
"peerDependenciesMeta": {
"@gorhom/bottom-sheet": {
"optional": true
},
"expo-document-picker": {
"optional": true
},
"expo-file-system": {
"optional": true
},
"react-native-gesture-handler": {
"optional": true
},
"react-native-reanimated": {
"optional": true
},
"react-native-streamdown": {
"optional": true
},
"zod": {
"optional": true
}
}
}