marcosremar2's picture
Add SDK and improve video transition synchronization
3acaae2
Raw
History Blame Contribute Delete
1.09 kB
{
"name": "@avatar/stream-sdk",
"version": "1.1.0",
"description": "SDK para streaming sincronizado de áudio e vídeo de avatar em tempo real",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"avatar",
"streaming",
"websocket",
"audio",
"video",
"sync",
"realtime",
"tts",
"lip-sync",
"vosk",
"speech-recognition",
"phonetic-alignment"
],
"author": "",
"license": "MIT",
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.3.0"
},
"optionalDependencies": {
"vosk-browser": "^0.0.8"
},
"peerDependencies": {},
"engines": {
"node": ">=16"
}
}