Files
video-tools/package.json
xiongxiao 58b27b86fe Refactor ASR module and remove deprecated AliAsrServer
- Introduced AsrRelatime class for real-time ASR using WebSocket.
- Removed AliAsrServer and related files from the aliyun provider.
- Updated base class for ASR to use WSServer for WebSocket connections.
- Added new test cases for the updated ASR functionality.
- Cleaned up unused imports and files across the project.
- Adjusted TypeScript configuration for better module resolution.
- Implemented silence generation for audio streaming.
2025-12-21 18:56:32 +08:00

62 lines
1.5 KiB
JSON

{
"name": "@kevisual/video-tools",
"version": "0.0.5",
"description": "",
"main": "index.js",
"basename": "/root/video-tools",
"app": {
"key": "video-tools",
"entry": "dist/app.mjs",
"type": "system-app"
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"dev:bun": "bun run src/dev.ts --watch",
"test": "tsx test/**/*.ts",
"clean": "rm -rf dist",
"pub": "npm run build && envision pack -p -u",
"cmd": "tsx cmd/index.ts "
},
"keywords": [],
"author": "abearxiong <xiongxiao@xiongxiao.me>",
"license": "MIT",
"type": "module",
"types": "types/index.d.ts",
"files": [
"dist",
"src",
"examples"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@gradio/client": "^2.0.1",
"@kevisual/router": "0.0.48",
"@kevisual/use-config": "^1.0.21",
"@kevisual/video": "^0.0.2",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19",
"eventemitter3": "^5.0.1",
"nanoid": "^5.1.6"
},
"devDependencies": {
"@alicloud/pop-core": "^1.8.0",
"@kevisual/logger": "^0.0.4",
"@kevisual/types": "^0.0.10",
"@kevisual/use-config": "^1.0.21",
"@types/crypto-js": "^4.2.2",
"@types/node": "^25.0.3",
"@types/ws": "^8.18.1",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"ioredis": "^5.8.2",
"rimraf": "^6.1.2",
"ws": "npm:@kevisual/ws"
},
"exports": {
"./src/*": "./src/*",
"./examples/*": "./examples/*"
},
"packageManager": "pnpm@10.26.1"
}