-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 954 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
{
"name": "@autocode2/speech-to-text",
"version": "0.1.1",
"description": "A speech-to-text library for node",
"main": "dist/index.js",
"type": "module",
"repository": "autocode2/speech-to-text",
"keywords": [
"audio",
"speech",
"speech-to-text",
"cli",
"sox",
"google-gemini"
],
"homepage": "https://github.com/autocode2/speech-to-text",
"publishConfig": {
"access": "public"
},
"bin": {
"speech-to-text": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "tsx src/cli.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write ."
},
"author": "Gareth Andrew",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.9.0",
"@types/yargs": "^17.0.33",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"yargs": "^17.7.2"
}
}