-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 2.82 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@responsivevoice/api-client",
"version": "2.0.4",
"description": "TypeScript REST client for the ResponsiveVoice text-to-speech (TTS) API — speech synthesis & voice generation",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"browser": {
"types": "./dist/index.browser.d.mts",
"default": "./dist/index.browser.mjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsdown",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"publint": "publint",
"attw": "attw --pack .",
"api:check": "api-extractor run",
"api:update": "api-extractor run --local"
},
"keywords": [
"responsivevoice",
"text-to-speech",
"speech-synthesis",
"tts",
"voice",
"api-client",
"rest-api",
"websocket",
"streaming",
"node",
"typescript"
],
"author": "ResponsiveVoice, Inc. <support@responsivevoice.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/responsivevoice/api-client.git"
},
"bugs": {
"url": "https://github.com/responsivevoice/api-client/issues"
},
"homepage": "https://github.com/responsivevoice/api-client#readme",
"dependencies": {
"@responsivevoice/text": "^2.0.0",
"@responsivevoice/types": "^2.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@microsoft/api-extractor": "^7.58.9",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.10",
"publint": "^0.3.21",
"tsdown": "^0.22.7",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=16"
},
"sideEffects": false,
"pnpm": {
"overrides": {
"defu@<=6.1.4": ">=6.1.5",
"yaml@>=2.0.0 <2.8.3": "^2.8.3",
"@mdn/browser-compat-data": "^8.0.7"
}
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=18.12.0",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "10.33.2",
"onFail": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"modern": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
],
"legacy": [
"iOS >= 12",
"Android >= 5",
"Chrome >= 66",
"Firefox >= 57",
"Safari >= 12",
"Edge >= 16"
]
}
}