-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 KB
/
package.json
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
{
"name": "n8n-nodes-azure-ai-search",
"version": "0.1.1",
"description": "Adds Azure AI Search vector store and generic nodes to n8n",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://",
"author": {
"name": "Steven Linn",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/flagbit/n8n-nodes-azure-ai-search.git"
},
"engines": {
"node": ">=18.10",
"pnpm": ">=9.1"
},
"packageManager": "[email protected]",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "pnpm build && pnpm lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/AzureAISearchApi.credentials.js"
],
"nodes": [
"dist/nodes/vector_store/VectorStoreAzureAISearch/VectorStoreAzureAISearch.node.js"
]
},
"dependencies": {
"@azure/search-documents": "^12.1.0",
"@opensearch-project/opensearch": "2.12.0"
},
"devDependencies": {
"@langchain/community": "^0.3.18",
"@langchain/core": "^0.3.7",
"@langchain/textsplitters": "0.1.0",
"@types/lodash": "^4.17.10",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.2",
"langchain": "^0.3.7",
"lodash": "^4.17.21",
"prettier": "^3.3.2",
"tmp-promise": "3.0.3",
"typescript": "^5.5.3",
"zod": "3.23.8"
},
"peerDependencies": {
"n8n-workflow": "1.48.0"
}
}