-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.28 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.28 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-opensearch",
"version": "0.2.5",
"description": "Adds OpenSearch vector store and generic nodes to n8n",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://github.com/stevenlafl/n8n-nodes-opensearch",
"author": {
"name": "Steven Linn",
"email": "smlucf@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/stevenlafl/n8n-nodes-opensearch.git"
},
"engines": {
"node": ">=18.10",
"pnpm": ">=9.1"
},
"packageManager": "pnpm@9.1.4",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "n8n-node build",
"build:watch": "tsc --watch",
"dev": "n8n-node dev",
"format": "prettier nodes credentials --write",
"lint": "n8n-node lint",
"lint:fix": "n8n-node lint --fix",
"release": "n8n-node release",
"prepublishOnly": "n8n-node prerelease",
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns='integration'",
"test:integration": "jest tests/integration",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"strict": true,
"credentials": [
"dist/credentials/OpenSearchApi.credentials.js"
],
"nodes": [
"dist/nodes/OpenSearch/OpenSearch.node.js",
"dist/nodes/vector_store/VectorStoreOpenSearch/VectorStoreOpenSearch.node.js"
]
},
"dependencies": {
"@opensearch-project/opensearch": "^2.12.0"
},
"devDependencies": {
"@langchain/classic": "^1.0.5",
"@langchain/community": "^1.0.5",
"@langchain/core": "^1.1.0",
"@langchain/openai": "^1.2.0",
"@langchain/textsplitters": "^1.0.1",
"@n8n/node-cli": "*",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.10",
"eslint": "9.32.0",
"jest": "^30.2.0",
"jest-mock-extended": "^4.0.0",
"langchain": "^1.1.1",
"lodash": "^4.17.21",
"n8n-workflow": "^2.1.0",
"prettier": "^3.3.2",
"release-it": "^19.0.4",
"tmp-promise": "^3.0.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"zod": "^3.23.8"
},
"peerDependencies": {
"@langchain/community": ">=0.3.0",
"@langchain/core": ">=0.3.0",
"n8n-workflow": ">=1.0.0"
}
}