Files
copilotkit__copilotkit/packages/react-native/project.json
Maxim 94c9c1d4c3 feat: add @copilotkit/react-native package
Headless React Native wrapper for CopilotKit. Provides a lightweight
CopilotKitProvider and re-exports platform-agnostic hooks from
react-core without pulling web dependencies (no DOM, CSS, Radix,
Lit, A2UI). Includes XHR-based streaming fetch polyfill for Hermes
and granular polyfills for streams, encoding, crypto, DOM, and
location APIs.
2026-05-06 16:41:51 -07:00

19 lines
483 B
JSON

{
"name": "@copilotkit/react-native",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/react-native/src",
"projectType": "library",
"targets": {
"build": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm run build",
"cwd": "packages/react-native"
},
"dependsOn": ["^build"],
"inputs": ["production", "^production"],
"outputs": ["{projectRoot}/dist/**"]
}
}
}