UNPKG

@aituber-onair/voice

Version:

Voice synthesis library for AITuber OnAir

46 lines (45 loc) 1.35 kB
{ "name": "@aituber-onair/voice", "version": "0.3.0", "description": "Voice synthesis library for AITuber OnAir", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/cjs/index.d.ts", "files": ["dist"], "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/cjs/index.d.ts" }, "./dist/cjs/*": "./dist/cjs/*", "./dist/esm/*": "./dist/esm/*" }, "scripts": { "build": "npm run build:cjs && npm run build:esm", "build:cjs": "tsc --project tsconfig.cjs.json", "build:esm": "tsc --project tsconfig.esm.json", "typecheck": "tsc --noEmit", "test": "npm run typecheck && vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "fmt": "biome format . --write", "fmt:check": "biome format .", "lint": "biome lint .", "prepublishOnly": "npm run build" }, "keywords": ["aituber", "vtuber", "ai", "voice", "tts", "speech-synthesis"], "author": "shinshin86 (https://github.com/shinshin86)", "license": "MIT", "devDependencies": { "@biomejs/biome": "1.9.4", "@types/node": "^18.15.0", "@vitest/coverage-v8": "^1.3.1", "jsdom": "^22.1.0", "typescript": "^5.0.0", "vitest": "^1.3.1" }, "publishConfig": { "access": "public" } }