voiceai-sdk
Version:
Official SDK for SLNG.AI Voice API - Text-to-Speech, Speech-to-Text, and LLM services
78 lines (77 loc) • 1.75 kB
JSON
{
"name": "voiceai-sdk",
"version": "0.1.5",
"description": "Official SDK for SLNG.AI Voice API - Text-to-Speech, Speech-to-Text, and LLM services",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"scripts",
"README.md",
"LICENSE",
"TELEMETRY.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"postinstall": "node ./scripts/track-install.js"
},
"keywords": [
"voiceai",
"slng",
"tts",
"stt",
"text-to-speech",
"speech-to-text",
"ai",
"voice",
"audio",
"elevenlabs",
"orpheus",
"whisper",
"llm"
],
"author": "SLNG.AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/slng-ai/voiceai-sdk"
},
"bugs": {
"url": "https://github.com/slng-ai/voiceai-sdk/issues"
},
"homepage": "https://slng.ai",
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"dependencies": {
"axios": "^1.6.2",
"form-data": "^4.0.0",
"eventemitter3": "^5.0.1"
},
"engines": {
"node": ">=16.0.0"
}
}