51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "@lilith/tts-client",
|
|
"version": "0.4.1",
|
|
"description": "Reusable TypeScript client for text-to-speech services (Piper, Speech Synthesis, Browser Web Speech API)",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"README.md",
|
|
"CHANGELOG.md"
|
|
],
|
|
"scripts": {
|
|
"prepare": "git config core.hooksPath .githooks || true",
|
|
"build": "tsup",
|
|
"clean": "rm -rf dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepublishOnly": "npm run clean && npm run build",
|
|
"prepack": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"tts",
|
|
"text-to-speech",
|
|
"piper",
|
|
"chatterbox",
|
|
"speech-synthesis",
|
|
"audio"
|
|
],
|
|
"author": "transquinnftw",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@lilith/configs": "^2.3.0",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.local/api/packages/lilith/npm/"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
}
|