Files
wehub-resource-sync e30e75b5d4
Changesets / Create Version PR (push) Has been cancelled
Deploy Shadcn Registry / Deploy Production (push) Has been cancelled
Template Metrics / LOC + Bundle Size (push) Has been cancelled
Code Quality / Oxlint + Oxfmt (push) Has been cancelled
Code Quality / Template Sync (push) Has been cancelled
Code Quality / Build Changed Packages (push) Has been cancelled
Code Quality / Test Changed Packages (push) Has been cancelled
Deploy Expo Example / Deploy Production (push) Has been cancelled
Deploy Ink Example / Deploy Production (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.12) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:40:13 +08:00

91 lines
2.0 KiB
JSON

{
"name": "assistant-stream",
"version": "0.3.25",
"description": "Streaming utilities for AI assistants",
"keywords": [
"ai",
"streaming",
"assistant",
"chat",
"openai",
"llm",
"assistant-ui"
],
"author": "AgentbaseAI Inc.",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"default": "./dist/utils.js"
},
"./resumable": {
"types": "./dist/resumable/index.d.ts",
"default": "./dist/resumable/index.js"
},
"./resumable/redis": {
"types": "./dist/resumable/stores/redis.d.ts",
"default": "./dist/resumable/stores/redis.js"
},
"./resumable/ioredis": {
"types": "./dist/resumable/stores/ioredis.d.ts",
"default": "./dist/resumable/stores/ioredis.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"utils",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "aui-build",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0",
"nanoid": "^5.1.16",
"secure-json-parse": "^4.1.0"
},
"peerDependencies": {
"ioredis": "^5.10.1",
"redis": "^5.12.1"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"redis": {
"optional": true
}
},
"devDependencies": {
"@assistant-ui/x-buildutils": "workspace:*",
"@types/json-schema": "^7.0.15",
"ioredis": "^5.11.1",
"redis": "^6.1.0",
"vitest": "^4.1.10"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://www.assistant-ui.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/assistant-ui/assistant-ui.git",
"directory": "packages/assistant-stream"
},
"bugs": {
"url": "https://github.com/assistant-ui/assistant-ui/issues"
}
}