-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.62 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mimic-my-voice",
"version": "1.0.0",
"description": "Create a Text to Speech Engine using Your Own Voice with Mycroft Mimic Trainer & Mimic Recording Studio.",
"homepage": "https://github.com/manifestinteractive/mimic-my-voice#readme",
"author": "Peter Schmalfeldt",
"license": "MIT",
"main": "./bin/cli.js",
"bin": {
"mimic": "./bin/cli.js"
},
"engines": {
"node": ">=12.0.0"
},
"contributors": [
{
"name": "Peter Schmalfeldt",
"email": "[email protected]",
"url": "https://peterschmalfeldt.com"
}
],
"keywords": [
"linux",
"macos",
"mimic",
"mycroft",
"recording",
"speech",
"studio",
"text",
"trainer",
"training",
"tts",
"voice",
"windows"
],
"repository": {
"type": "git",
"url": "git+https://github.com/manifestinteractive/mimic-my-voice.git"
},
"bugs": {
"url": "https://github.com/manifestinteractive/mimic-my-voice/issues"
},
"lint-staged": {
"*.js": [
"eslint . --fix",
"git add"
]
},
"scripts": {
"test": "eslint --ext .js ./ --fix && echo '\n【ツ】CODE PERFECTION !!!\n'"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"minimist": "^1.2.5",
"prettier": "^2.3.0"
},
"dependencies": {
"chalk": "^4.1.1",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"ora": "^5.4.0",
"s3-sync-client": "^1.2.0",
"yargs": "^17.0.1"
}
}