-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.53 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.53 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
{
"name": "n8n-nodes-couchbase",
"version": "1.3.2",
"description": "Community nodes for using Couchbase Key-Value, Query, Full-Text Search, Couchbase Search Vector Store, Couchbase Query Vector Store, and Couchbase as Chat Memory with n8n.",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://github.com/Couchbase-Ecosystem/n8n-nodes-couchbase#readme",
"author": {
"name": "Elliot Scribner",
"email": "elliot.scribner@couchbase.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Couchbase-Ecosystem/n8n-nodes-couchbase.git"
},
"engines": {
"node": ">=18.10",
"pnpm": ">=9.1"
},
"packageManager": "pnpm@9.1.4",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc && tsc-alias && gulp build:icons",
"dev": "tsc --watch",
"dev:ui": "nodemon -w nodes -w credentials -w utils --ext ts --exec 'tsc && tsc-alias && cd $HOME/.n8n/custom && COREPACK_ENABLE_STRICT=0 pnpm install && cd - && n8n'",
"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/CouchbaseApi.credentials.js"
],
"nodes": [
"dist/nodes/Couchbase/Couchbase.node.js",
"dist/nodes/vector_store/VectorStoreCouchbaseSearch/VectorStoreCouchbaseSearch.node.js",
"dist/nodes/vector_store/VectorStoreCouchbaseQuery/VectorStoreCouchbaseQuery.node.js",
"dist/nodes/memory/MemoryCouchbaseChat/MemoryCouchbaseChat.node.js"
]
},
"devDependencies": {
"@types/node": "^22.13.5",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.4",
"gulp": "^4.0.2",
"nodemon": "^3.1.9",
"prettier": "^3.3.2",
"sqlite3": "^5.1.7",
"tsc-alias": "^1.8.15",
"typescript": "^5.5.3"
},
"peerDependencies": {
"n8n-workflow": "^1.120.1"
},
"dependencies": {
"@langchain/classic": "^1.0.19",
"@langchain/community": "^1.1.18",
"@langchain/core": "^1.1.27",
"@langchain/textsplitters": "^1.0.1",
"couchbase": "^4.6.1",
"langchain": "^1.2.26",
"tmp-promise": "^3.0.3",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"pnpm": {
"overrides": {
"@langchain/langgraph-sdk": "1.3.1"
}
}
}