n8n-nodes-runrunit 0.2.4 → 0.2.6
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 +59 -0
- package/dist/package.json +6 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -4
package/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# n8n-nodes-runrun.it
|
|
2
|
+
|
|
3
|
+
> Nodes n8n para integração com runrun.it
|
|
4
|
+
|
|
5
|
+
Descrição
|
|
6
|
+
--
|
|
7
|
+
Coleção de nodes para n8n que permitem integrar automações com a API do runrun.it.
|
|
8
|
+
|
|
9
|
+
Estrutura do repositório
|
|
10
|
+
--
|
|
11
|
+
- `nodes/RunrunIt/` — implementação dos nodes e transport
|
|
12
|
+
- `credentials/RunrunIt.credentials.ts` — definição das credenciais
|
|
13
|
+
- `runrun.itDoc/` — documentação adicional (doc.MD, doc.pt.MD)
|
|
14
|
+
|
|
15
|
+
Requisitos
|
|
16
|
+
--
|
|
17
|
+
- Node.js (>= 16)
|
|
18
|
+
- npm ou yarn
|
|
19
|
+
- n8n (quando for usar os nodes no ambiente n8n)
|
|
20
|
+
|
|
21
|
+
Instalação (desenvolvimento)
|
|
22
|
+
--
|
|
23
|
+
1. Instale dependências:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install
|
|
27
|
+
# ou
|
|
28
|
+
yarn install
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
2. Compile TypeScript (se necessário):
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm run build
|
|
35
|
+
# ou
|
|
36
|
+
npx tsc -p .
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Como usar
|
|
40
|
+
--
|
|
41
|
+
- Os nodes estão em `nodes/RunrunIt/`. Para testar localmente, siga o fluxo de desenvolvimento do n8n para carregar nodes customizados.
|
|
42
|
+
- As credenciais usadas pelo node estão em `credentials/RunrunIt.credentials.ts`. Configure as credenciais no n8n conforme necessário.
|
|
43
|
+
|
|
44
|
+
Documentação
|
|
45
|
+
--
|
|
46
|
+
- Veja `runrun.itDoc/doc.pt.MD` e `runrun.itDoc/doc.MD` para detalhes da integração e exemplos de uso.
|
|
47
|
+
|
|
48
|
+
Contribuição
|
|
49
|
+
--
|
|
50
|
+
- Abra issues para bugs ou sugestões.
|
|
51
|
+
- Para PRs: mantenha o código em TypeScript consistente com o estilo do repositório.
|
|
52
|
+
|
|
53
|
+
Contato
|
|
54
|
+
--
|
|
55
|
+
- Mantenedor: (adicione seu contato aqui)
|
|
56
|
+
|
|
57
|
+
Licença
|
|
58
|
+
--
|
|
59
|
+
- (Adicione a licença do projeto aqui)
|
package/dist/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-runrunit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "n8n nodes for Runrun.it API",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/YeshShareDEV/n8n-nodes-runrun.it",
|
|
6
7
|
"author": {
|
|
7
8
|
"name": "Marcos Campos",
|
|
8
9
|
"email": "contato@yeshshare.com.br"
|
|
9
10
|
},
|
|
11
|
+
"main": "dist/nodes/RunrunIt/RunrunIt.node.js",
|
|
10
12
|
"scripts": {
|
|
11
|
-
"
|
|
12
|
-
"build
|
|
13
|
-
"
|
|
13
|
+
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true});\"",
|
|
14
|
+
"build": "npm run clean && n8n-node build",
|
|
15
|
+
"prepublishOnly": "npm run build",
|
|
14
16
|
"lint": "n8n-node lint",
|
|
15
17
|
"lint:fix": "n8n-node lint --fix",
|
|
16
18
|
"release": "n8n-node release"
|