mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
c28af209dd
The streaming markdown parser/renderer code is now owned by CopilotKit (merged
in by its copyright holder), so the third-party attribution is no longer needed:
- LICENSE: replace the dual LiveLoveApp/CopilotKit MIT with the standard
repo MIT (Copyright (c) Atai Barkai)
- Delete NOTICE (hashbrown "Magic Text" upstream attribution) and drop it from
package.json "files"
- Remove the per-file `// Derived from hashbrown ...` / `// Uses ... derived
from hashbrown ...` headers across src
- De-brand internal JSDoc ("Magic Text" -> "streaming markdown") and tsconfig
comment; drop the README and reference-doc "Attribution" sections
- Neutralize hashbrown.dev test-fixture URLs/titles -> example.org / "Example"
No behavioral change; public API unchanged. check-types + 164 tests green, build clean.
84 lines
1.9 KiB
JSON
84 lines
1.9 KiB
JSON
{
|
|
"name": "@copilotkit/markdown-renderer",
|
|
"version": "1.59.2",
|
|
"description": "Zero-dependency streaming markdown parser and renderer for CopilotKit",
|
|
"license": "MIT",
|
|
"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",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./react": {
|
|
"import": "./dist/react/index.mjs",
|
|
"require": "./dist/react/index.cjs"
|
|
},
|
|
"./react-native": {
|
|
"import": "./dist/react-native/index.mjs",
|
|
"require": "./dist/react-native/index.cjs"
|
|
},
|
|
"./vue": {
|
|
"import": "./dist/vue/index.mjs",
|
|
"require": "./dist/vue/index.cjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"check-types": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"publint": "publint .",
|
|
"attw": "attw --pack . --profile node16 --ignore-rules internal-resolution-error"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18",
|
|
"react-native": ">=0.70",
|
|
"vue": ">=3"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"react-native": {
|
|
"optional": true
|
|
},
|
|
"vue": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@copilotkit/typescript-config": "workspace:*",
|
|
"@testing-library/react": "^16.1.0",
|
|
"@types/react": "^19",
|
|
"@types/node": "^22.15.3",
|
|
"@vue/test-utils": "^2",
|
|
"jsdom": "^25.0.1",
|
|
"react": "^19",
|
|
"react-dom": "^19",
|
|
"tsdown": "^0.20.3",
|
|
"typescript": "5.8.2",
|
|
"vitest": "^3.2.4",
|
|
"vue": "^3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|