-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "n8n-nodes-ttsbro",
"version": "0.1.6",
"description": "Text-to-Speech n8n node using sherpa-onnx Kokoro model",
"keywords": [
"n8n-community-node-package",
"n8n",
"tts",
"text-to-speech",
"kokoro",
"sherpa-onnx",
"wasm",
"ttsbro"
],
"license": "Apache-2.0",
"homepage": "https://github.com/blankarrayy/n8n-nodes-ttsbro",
"author": {
"name": "Blankarray",
"email": "abhiram.bvb@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/blankarrayy/n8n-nodes-ttsbro.git"
},
"engines": {
"node": ">=18.10"
},
"main": "dist/nodes/TtsBro/TtsBro.node.js",
"types": "dist/nodes/TtsBro/TtsBro.node.d.ts",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes --write",
"lint": "eslint nodes --ext .ts",
"lint:fix": "eslint nodes --ext .ts --fix",
"prepublishOnly": "npm run build",
"download-model": "curl -SL -O https://github.com/k2-fsa/sherpa-onnx/releases/download/tts-models/kokoro-int8-en-v0_19.tar.bz2 && tar xf kokoro-int8-en-v0_19.tar.bz2 && rm kokoro-int8-en-v0_19.tar.bz2"
},
"files": [
"dist",
"kokoro-int8-en-v0_19",
"LICENSE",
"NOTICE",
"README.md"
],
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"dist/nodes/TtsBro/TtsBro.node.js"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@types/node": "^22.10.2",
"eslint": "^8.57.0",
"gulp": "^4.0.2",
"n8n-workflow": "^1.72.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"dependencies": {
"sherpa-onnx": "^1.10.42"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}