-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1003 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
47
48
49
50
{
"name": "dectalk-tts",
"version": "2.0.0-alpha",
"description": "API wrapper for the Dectalk TTS system",
"keywords": [
"api",
"text-to-speech",
"tts",
"wav",
"dectalk"
],
"homepage": "https://github.com/JstnMcBrd/dectalk-tts",
"bugs": "https://github.com/JstnMcBrd/dectalk-tts/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/JstnMcBrd/dectalk-tts.git"
},
"license": "Apache-2.0",
"author": "Justin McBride",
"type": "module",
"exports": {
"types": {
"require": "./dist/index.d.cts",
"default": "./dist/index.d.ts"
},
"default": {
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "vitest src",
"test-api": "vitest api"
},
"devDependencies": {
"@jstnmcbrd/eslint-config": "^1.0.0",
"@types/node": "^22.9.0",
"eslint": "^8.57.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
}
}