-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.81 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.81 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
{
"name": "gspeak",
"version": "0.0.4",
"description": "Google Text to Speech — a modern TypeScript rewrite of gtts with zero deprecated dependencies",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"gspeak": "./dist/bin/gspeak.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p .",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts bin/**/*.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"verify": "npm run build && npx ts-node verify-languages.ts"
},
"keywords": [
"google",
"tts",
"text-to-speech",
"gtts",
"gspeak",
"speech",
"audio",
"mp3",
"typescript"
],
"author": "Qasim Ali",
"license": "MIT",
"dependencies": {
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.0.0",
"rimraf": "^6.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.0"
},
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlobalTechInfo/gspeak.git"
},
"bugs": {
"url": "https://github.com/GlobalTechInfo/gspeak/issues"
},
"homepage": "https://github.com/GlobalTechInfo/gspeak#readme",
"vitest": {
"coverage": {
"provider": "v8",
"include": [
"src/**/*.ts"
],
"exclude": [
"src/index.ts"
],
"reporter": [
"text",
"html"
],
"thresholds": {
"lines": 100,
"functions": 100,
"branches": 100,
"statements": 100
}
}
}
}