Files
copilotkit__copilotkit/packages/core/package.json
Austin Merrick 4ba201b5c4 fix: repair check-types across all packages and gate it in CI
Repairs TypeScript check-types across the monorepo and adds a CI gate so
regressions are caught going forward:

- core: bundler module resolution and strict-mode fixes
- sdk-js: bundler module resolution; keep codegen, formatter, packaging working
- react-core: fixes across components, hooks, and tests
- react-native: restore catch binding referenced by TypeError cause
- runtime: repair check-types and bound AI SDK schema inference
- web-inspector: nodenext import extensions, export Anchor
- remaining packages and node example: assorted check-types repairs
- deps: add missing type-only devDependencies
- license context driven from /info licenseStatus
- ci: run check-types in the static quality workflow

Squashed from 12 commits for a single, easily-revertable change.
2026-06-23 15:26:47 -07:00

62 lines
1.6 KiB
JSON

{
"name": "@copilotkit/core",
"version": "1.61.1",
"description": "Core web utilities for CopilotKit2",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"size": "size-limit",
"compat-check": "es-check es2022 --module 'dist/**/!(*.umd).{mjs,cjs,js}' && es-check es2018 'dist/**/*.umd.js'",
"dev": "tsdown --watch",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"publint": "publint .",
"attw": "attw --pack . --profile node16"
},
"dependencies": {
"@ag-ui/client": "0.0.57",
"@copilotkit/shared": "workspace:*",
"@tanstack/pacer": "^0.20.1",
"phoenix": "^1.8.4",
"rxjs": "7.8.1",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@copilotkit/typescript-config": "workspace:*",
"@types/node": "^22.15.3",
"@types/phoenix": "^1.6.6",
"@valibot/to-json-schema": "^1.5.0",
"@vitest/coverage-v8": "^3.2.4",
"arktype": "^2.1.29",
"tsdown": "^0.20.3",
"typescript": "5.8.2",
"valibot": "^1.2.0",
"vitest": "^3.2.4",
"zod": "^3.25.75"
},
"engines": {
"node": ">=18"
}
}