forked from diffusionstudio/vits-web
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@mintplex-labs/piper-tts-web",
"private": false,
"version": "1.0.3",
"description": "Fork of @diffusion-studio/vits-web for easier built-in PiperTTS use.",
"type": "module",
"files": [
"dist",
"package.json"
],
"module": "./dist/piper-tts-web.js",
"types": "./dist/index.d.ts",
"author": "[email protected]",
"exports": {
".": {
"import": "./dist/piper-tts-web.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:Mintplex-Labs/piper-tts-web.git"
},
"homepage": "https://github.com/Mintplex-Labs/piper-tts-web#readme",
"license": "MIT",
"keywords": [
"vits",
"webassembly",
"emscripten",
"audio",
"browser",
"tts",
"text-to-speech",
"speech synthesis",
"web ai",
"webnn",
"piperTTS",
"AnythingLLM"
],
"scripts": {
"dev": "vite",
"build": "rm -r -f ./dist && tsc && vite build",
"preview": "vite preview",
"test": "npx playwright test --project=chromium",
"verify": "yarn build && cd scripts && node refresh-and-validate.mjs && cd .."
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"object-deep-compare": "^1.2.0",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1"
},
"peerDependencies": {
"onnxruntime-web": "^1.18.0"
}
}