-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.17 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.17 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
{
"name": "n8n-nodes-stemsplit",
"version": "0.2.1",
"description": "Separate vocals, drums, bass, and other stems from any audio file inside N8N. Remove vocals, isolate instrumentals, extract drum tracks, or split full 6-stem mixes \u2014 powered by the StemSplit API.",
"keywords": [
"n8n-community-node-package",
"n8n",
"n8n-nodes",
"n8n-automation",
"n8n-audio",
"n8n-music",
"stemsplit",
"stem-separation",
"stem-splitter",
"audio-separation",
"music-separation",
"vocal-removal",
"vocal-remover",
"acapella",
"karaoke",
"demucs",
"htdemucs",
"ai-audio",
"audio-ai",
"stems",
"music-production",
"audio-processing",
"vocal-isolation",
"instrumental",
"backing-track"
],
"license": "MIT",
"homepage": "https://github.com/StemSplit/n8n-stemsplit#readme",
"bugs": {
"url": "https://github.com/StemSplit/n8n-stemsplit/issues"
},
"author": {
"name": "StemSplit",
"email": "support@stemsplit.io",
"url": "https://stemsplit.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StemSplit/n8n-stemsplit.git"
},
"scripts": {
"build": "tsc && npm run copy-icons && npm run copy-codex",
"copy-icons": "copyfiles -u 1 nodes/**/*.svg nodes/**/*.png dist/nodes/",
"copy-codex": "copyfiles -u 1 nodes/**/*.json dist/nodes/",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials --ext .ts",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"files": [
"dist",
"LICENSE"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/StemSplitApi.credentials.js"
],
"nodes": [
"dist/nodes/StemSplit/StemSplit.node.js"
]
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"n8n-workflow": "^1.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"engines": {
"node": ">=20.0.0"
}
}