mirror of
https://github.com/apache/superset.git
synced 2026-07-12 17:55:38 +00:00
Ships the full extensions/chat reference implementation that exercises the chatbot extension platform end-to-end: activation lifecycle and master disposable (teardown contract), React error boundary (fault isolation), mock streaming with AbortController cancellation, commands registration, and the pageContext helper that composes host namespaces. Local branch only — not intended for upstream merge. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
751 B
JSON
27 lines
751 B
JSON
{
|
|
"name": "@apache-superset/reference-chatbot",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"description": "Reference chatbot extension that validates the Superset chatbot extension platform.",
|
|
"scripts": {
|
|
"start": "webpack serve --mode development",
|
|
"build": "webpack --stats-error-details --mode production"
|
|
},
|
|
"peerDependencies": {
|
|
"@apache-superset/core": "^0.1.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@apache-superset/core": "^0.1.0",
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"ts-loader": "^9.5.0",
|
|
"typescript": "^5.0.0",
|
|
"webpack": "^5.0.0",
|
|
"webpack-cli": "^5.0.0",
|
|
"webpack-dev-server": "^5.0.0"
|
|
}
|
|
}
|