-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
61
{
"name": "@diffusionstudio/vits-web",
"private": false,
"version": "1.0.3",
"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"
},
"repository": {
"type": "git",
"url": "git@github.com:diffusionstudio/vits-web.git"
},
"bugs": {
"url": "https://github.com/diffusionstudio/vits-web/issues"
},
"homepage": "https://huggingface.co/spaces/diffusionstudio/vits-web",
"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",
"format": "npx @biomejs/biome format --write ./src",
"test": "npx playwright test --project=chromium"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@playwright/test": "^1.35.1",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1"
},
"dependencies": {
"onnxruntime-web": "1.18.0"
}
}