-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 845 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 845 Bytes
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
{
"name": "@echogarden/gnuspeech-wasm",
"version": "0.2.1",
"description": "WebAssembly port of the GnuSpeech speech synthesizer.",
"author": "Rotem Dan",
"license": "GPL-3.0",
"keywords": [
"GnuSpeech",
"Speech Synthesizer",
"text-to-speech",
"TTS",
"Articulatory Speech Synthesis"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/echogarden-project/gnuspeech-wasm"
},
"bugs": {
"url": "https://github.com/echogarden-project/gnuspeech-wasm/issues"
},
"main": "./dist/GnuSpeech.js",
"type": "module",
"files": [
"dist",
"src",
"wasm",
"data",
"tsconfig.json",
"COPYING",
"README.md"
],
"scripts": {
"test": "node dist/Test.js"
},
"dependencies": {
"wasm-heap-manager": "^0.1.0"
},
"devDependencies": {
"@types/node": "^22.8.6"
}
}