n8n-nodes-tornado-api 0.1.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -357,7 +357,7 @@ Use the **IF** node to handle errors:
|
|
|
357
357
|
### Build from Source
|
|
358
358
|
|
|
359
359
|
```bash
|
|
360
|
-
git clone https://github.com/
|
|
360
|
+
git clone https://github.com/Lax3n/TornadoAPI_N8N
|
|
361
361
|
cd n8n-nodes-tornado-api
|
|
362
362
|
npm install
|
|
363
363
|
npm run build
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-tornado-api",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "n8n node for Tornado API - Download YouTube videos & Spotify podcasts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "https://github.com/
|
|
25
|
+
"url": "https://github.com/Lax3n/TornadoAPI_N8N.git"
|
|
26
26
|
},
|
|
27
27
|
"main": "index.js",
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "tsc && gulp build:icons",
|
|
30
30
|
"dev": "tsc --watch",
|
|
31
31
|
"format": "prettier nodes credentials --write",
|
|
32
|
-
"lint": "eslint nodes credentials
|
|
33
|
-
"lintfix": "eslint nodes credentials
|
|
32
|
+
"lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\"",
|
|
33
|
+
"lintfix": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" --fix",
|
|
34
34
|
"prepublishOnly": "npm run build"
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/node": "^20.10.0",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
50
51
|
"@typescript-eslint/parser": "^6.0.0",
|
|
51
52
|
"eslint": "^8.56.0",
|
|
52
53
|
"gulp": "^5.0.1",
|