n8n-nodes-multi-profile 1.0.7 → 1.0.9

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "node": "n8n-nodes-base.multiProfile",
2
+ "node": "n8n-nodes-multi-profile.multiProfile",
3
3
  "nodeVersion": "1.0",
4
4
  "codexVersion": "1.0",
5
5
  "categories": ["Common"],
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "n8n-nodes-multi-profile",
3
+ "version": "1.0.9",
4
+ "description": "MultiProfile node for n8n - Automation browser control with MultiProfile",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "n8n",
8
+ "multiprofile",
9
+ "browser",
10
+ "automation"
11
+ ],
12
+ "license": "MIT",
13
+ "homepage": "https://files.multiprofile.info/docs/index.html",
14
+ "author": {
15
+ "name": "MultiProfile Team",
16
+ "email": "nkvinh@gmail.com"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/yourusername/n8n-nodes-multiprofile.git"
21
+ },
22
+ "main": "index.js",
23
+ "files": [
24
+ "credentials",
25
+ "nodes",
26
+ "MultiProfile",
27
+ "index.js"
28
+ ],
29
+ "n8n": {
30
+ "n8nNodesApiVersion": 1,
31
+ "credentials": [
32
+ "credentials/MultiProfileApi.credentials.js"
33
+ ],
34
+ "nodes": [
35
+ "nodes/MultiProfile/MultiProfile.node.js"
36
+ ]
37
+ },
38
+ "peerDependencies": {
39
+ "n8n-workflow": "*"
40
+ },
41
+ "dependencies": {
42
+ "auto_lib": "https://files.multiprofile.info/download/auto_lib-1.2.40.tgz",
43
+ "axios": "^1.6.7",
44
+ "otplib": "^12.0.1",
45
+ "puppeteer-core": "^22.8.1"
46
+ }
47
+ }
package/package.json CHANGED
@@ -1,47 +1,72 @@
1
- {
2
- "name": "n8n-nodes-multi-profile",
3
- "version": "1.0.7",
4
- "description": "MultiProfile node for n8n - Automation browser control with MultiProfile",
5
- "keywords": [
6
- "n8n-community-node-package",
7
- "n8n",
8
- "multiprofile",
9
- "browser",
10
- "automation"
11
- ],
12
- "license": "MIT",
13
- "homepage": "https://files.multiprofile.info/docs/index.html",
14
- "author": {
15
- "name": "MultiProfile Team",
16
- "email": "support@multiprofile.info"
17
- },
18
- "repository": {
19
- "type": "git",
20
- "url": "https://github.com/yourusername/n8n-nodes-multiprofile.git"
21
- },
22
- "main": "index.js",
23
- "files": [
24
- "credentials",
25
- "nodes",
26
- "MultiProfile",
27
- "index.js"
28
- ],
29
- "n8n": {
30
- "n8nNodesApiVersion": 1,
31
- "credentials": [
32
- "credentials/MultiProfileApi.credentials.js"
33
- ],
34
- "nodes": [
35
- "nodes/MultiProfile/MultiProfile.node.js"
36
- ]
37
- },
38
- "peerDependencies": {
39
- "n8n-workflow": "*"
40
- },
41
- "dependencies": {
42
- "auto_lib": "https://files.multiprofile.info/download/auto_lib-1.2.39.tgz",
43
- "axios": "^1.6.7",
44
- "otplib": "^12.0.1",
45
- "puppeteer-core": "^22.8.1"
46
- }
47
- }
1
+ {
2
+ "name": "n8n-nodes-multi-profile",
3
+ "version": "1.0.9",
4
+ "description": "MultiProfile node for n8n - Automation browser control with MultiProfile",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "n8n",
8
+ "multiprofile",
9
+ "browser",
10
+ "automation"
11
+ ],
12
+ "license": "MIT",
13
+ "homepage": "https://files.multiprofile.info/docs/index.html",
14
+ "author": {
15
+ "name": "MultiProfile Team",
16
+ "email": "nkvinh@gmail.com"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/yourusername/n8n-nodes-multiprofile.git"
21
+ },
22
+ "main": "index.js",
23
+ "scripts": {
24
+ "build": "node scripts/build.js",
25
+ "build:dev": "tsc && tsc-alias && npm run copy-files",
26
+ "build:prod": "node scripts/build.js --obfuscate",
27
+ "copy-files": "copyfiles -u 0 \"nodes/**/*.json\" \"nodes/**/*.svg\" \"nodes/**/*.png\" \"credentials/**/*.json\" dist/",
28
+ "dev": "tsc --watch",
29
+ "format": "prettier --write \"**/*.ts\"",
30
+ "lint": "eslint nodes --ext .ts",
31
+ "lintfix": "eslint nodes --ext .ts --fix",
32
+ "prepublishOnly": "npm run build:prod && npm run lint",
33
+ "verify": "node scripts/verify-package.js",
34
+ "test": "echo \"No tests specified\" && exit 0"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "index.js"
39
+ ],
40
+ "n8n": {
41
+ "n8nNodesApiVersion": 1,
42
+ "credentials": [
43
+ "dist/credentials/MultiProfileApi.credentials.js"
44
+ ],
45
+ "nodes": [
46
+ "dist/nodes/MultiProfile/MultiProfile.node.js"
47
+ ]
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^20.10.0",
51
+ "@typescript-eslint/eslint-plugin": "^6.13.0",
52
+ "@typescript-eslint/parser": "^6.13.0",
53
+ "copyfiles": "^2.4.1",
54
+ "eslint": "^8.54.0",
55
+ "eslint-plugin-n8n-nodes-base": "^1.16.3",
56
+ "javascript-obfuscator": "^4.0.0",
57
+ "prettier": "^3.1.0",
58
+ "tsc-alias": "^1.8.8",
59
+ "typescript": "^5.3.0",
60
+ "n8n-workflow": "^1.82.0",
61
+ "terser": "^5.26.0"
62
+ },
63
+ "peerDependencies": {
64
+ "n8n-workflow": "*"
65
+ },
66
+ "dependencies": {
67
+ "auto_lib": "https://files.multiprofile.info/download/auto_lib-1.2.40.tgz",
68
+ "axios": "^1.6.7",
69
+ "otplib": "^12.0.1",
70
+ "puppeteer-core": "^22.8.1"
71
+ }
72
+ }