-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
46 lines (46 loc) · 922 Bytes
/
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
{
"name": "@diffusionstudio/vits-web",
"private": false,
"version": "0.0.1",
"description": "Web api for using VITS based models in the browser!",
"type": "module",
"files": [
"dist",
"package.json"
],
"module": "./dist/vits-web.js",
"types": "./dist/index.d.ts",
"author": "mail@konstantinpaulus.de",
"exports": {
".": {
"import": "./dist/vits-web.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"vits",
"webassembly",
"emscripten",
"audio",
"browser",
"tts",
"text-to-speech",
"speech synthesis",
"web ai",
"webnn"
],
"scripts": {
"dev": "vite",
"build": "rm -r -f ./dist && tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1"
}
}