n8n-nodes-vlm 3.3.5 → 3.3.7
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/package.json +96 -88
package/package.json
CHANGED
|
@@ -1,90 +1,98 @@
|
|
|
1
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
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
2
|
+
"name": "n8n-nodes-vlm",
|
|
3
|
+
"version": "3.3.7",
|
|
4
|
+
"description": "Vision-Language Models for n8n - Lightweight specialized VLMs for document analysis and classification",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"author": "Nicolas Geysse",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/theseedship/n8n_vlm.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/theseedship/n8n_vlm/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/theseedship/n8n_vlm#readme",
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/**/*",
|
|
18
|
+
"src/**/*.svg",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsc && npm run copy-assets",
|
|
24
|
+
"copy-assets": "cp src/nodes/VLMComplexityClassifier/vlm.svg dist/nodes/VLMComplexityClassifier/ && cp src/nodes/VLMComplexityWorkflow/vlm.svg dist/nodes/VLMComplexityWorkflow/",
|
|
25
|
+
"dev": "tsc --watch",
|
|
26
|
+
"lint": "eslint . --ext .ts",
|
|
27
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
28
|
+
"lint-staged": "lint-staged",
|
|
29
|
+
"test": "jest",
|
|
30
|
+
"test:pre-commit": "jest --bail --findRelatedTests",
|
|
31
|
+
"build:check": "tsc --noEmit",
|
|
32
|
+
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
|
|
33
|
+
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
|
|
34
|
+
"prepare": "cd .. && husky custom-nodes/.husky"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"n8n",
|
|
38
|
+
"n8n-nodes",
|
|
39
|
+
"n8n-community-node-package",
|
|
40
|
+
"vlm",
|
|
41
|
+
"vision-language",
|
|
42
|
+
"classification",
|
|
43
|
+
"complexity",
|
|
44
|
+
"document-analysis",
|
|
45
|
+
"ai"
|
|
46
|
+
],
|
|
47
|
+
"n8n": {
|
|
48
|
+
"n8nNodesApiVersion": 1,
|
|
49
|
+
"nodes": [
|
|
50
|
+
"dist/nodes/VLMComplexityClassifier/VLMComplexityClassifier.node.js",
|
|
51
|
+
"dist/nodes/VLMComplexityWorkflow/VLMComplexityWorkflow.node.js"
|
|
52
|
+
],
|
|
53
|
+
"credentials": []
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@commitlint/cli": "^20.1.0",
|
|
57
|
+
"@commitlint/config-conventional": "^20.0.0",
|
|
58
|
+
"@types/jest": "^29.0.0",
|
|
59
|
+
"@types/node": "^18.0.0",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
61
|
+
"@typescript-eslint/parser": "^5.0.0",
|
|
62
|
+
"eslint": "^8.0.0",
|
|
63
|
+
"husky": "^9.1.7",
|
|
64
|
+
"jest": "^29.0.0",
|
|
65
|
+
"lint-staged": "^15.2.11",
|
|
66
|
+
"prettier": "^3.4.2",
|
|
67
|
+
"ts-jest": "^29.0.0",
|
|
68
|
+
"typescript": "^5.0.0"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"n8n-workflow": "^1.0.0"
|
|
72
|
+
},
|
|
73
|
+
"lint-staged": {
|
|
74
|
+
"*.{ts,js}": [
|
|
75
|
+
"eslint --fix",
|
|
76
|
+
"prettier --write"
|
|
77
|
+
],
|
|
78
|
+
"*.{json,md}": [
|
|
79
|
+
"prettier --write"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"engines": {
|
|
83
|
+
"node": ">=18.0.0",
|
|
84
|
+
"npm": ">=9.0.0"
|
|
85
|
+
},
|
|
86
|
+
"overrides": {
|
|
87
|
+
"form-data": "^4.0.4",
|
|
88
|
+
"lodash": "^4.18.0",
|
|
89
|
+
"minimatch": "^3.1.4",
|
|
90
|
+
"ajv@>=6.0.0 <7.0.0": "^6.14.0",
|
|
91
|
+
"ajv@>=8.0.0 <9.0.0": "^8.18.0",
|
|
92
|
+
"handlebars": "^4.7.9",
|
|
93
|
+
"flatted": "^3.4.2",
|
|
94
|
+
"picomatch": "^2.3.2",
|
|
95
|
+
"yaml": "^2.8.3",
|
|
96
|
+
"brace-expansion": "^1.1.13"
|
|
97
|
+
}
|
|
90
98
|
}
|