@ctera/n8n-nodes-ctera-ai 0.1.2 → 0.4.0

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 CHANGED
@@ -1,60 +1,71 @@
1
- {
2
- "name": "@ctera/n8n-nodes-ctera-ai",
3
- "version": "0.1.2",
4
- "description": "n8n community node for CTERA AI MCP integration - enables semantic search, chat, and expert discovery",
5
- "keywords": [
6
- "n8n-community-node-package",
7
- "n8n",
8
- "ctera",
9
- "ai",
10
- "mcp",
11
- "rag"
12
- ],
13
- "license": "MIT",
14
- "homepage": "https://github.com/ctera/ctera-n8n-nodes",
15
- "author": {
16
- "name": "CTERA Networks",
17
- "email": "support@ctera.com"
18
- },
19
- "repository": {
20
- "type": "git",
21
- "url": "https://github.com/ctera/ctera-n8n-nodes.git"
22
- },
23
- "publishConfig": {
24
- "access": "public"
25
- },
26
- "main": "index.js",
27
- "scripts": {
28
- "build": "tsc && gulp build:icons",
29
- "dev": "tsc --watch",
30
- "format": "prettier nodes credentials --write",
31
- "lint": "eslint 'nodes/**/*.ts' 'credentials/**/*.ts' package.json",
32
- "lintfix": "eslint 'nodes/**/*.ts' 'credentials/**/*.ts' package.json --fix",
33
- "prepublishOnly": "npm run build && npm run lint"
34
- },
35
- "files": [
36
- "dist"
37
- ],
38
- "n8n": {
39
- "n8nNodesApiVersion": 1,
40
- "credentials": [
41
- "dist/credentials/CteraAiMcpApi.credentials.js"
42
- ],
43
- "nodes": [
44
- "dist/nodes/CteraAi/CteraAi.node.js"
45
- ]
46
- },
47
- "devDependencies": {
48
- "@typescript-eslint/eslint-plugin": "^5.62.0",
49
- "@typescript-eslint/parser": "^5.59.0",
50
- "eslint": "^8.40.0",
51
- "eslint-plugin-n8n-nodes-base": "^1.12.0",
52
- "gulp": "^5.0.1",
53
- "n8n-workflow": "^1.0.0",
54
- "prettier": "^2.8.8",
55
- "typescript": "^5.0.4"
56
- },
57
- "peerDependencies": {
58
- "n8n-workflow": "^1.0.0"
59
- }
60
- }
1
+ {
2
+ "name": "@ctera/n8n-nodes-ctera-ai",
3
+ "version": "0.4.0",
4
+ "description": "n8n community nodes for CTERA Portal - includes AI/RAG integration and filesystem operations via MCP",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "n8n",
8
+ "ctera",
9
+ "ai",
10
+ "mcp",
11
+ "rag",
12
+ "filesystem",
13
+ "storage",
14
+ "file-management"
15
+ ],
16
+ "license": "MIT",
17
+ "homepage": "https://github.com/ctera/ctera-n8n-nodes",
18
+ "author": {
19
+ "name": "CTERA Networks",
20
+ "email": "support@ctera.com"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/ctera/ctera-n8n-nodes.git"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "main": "index.js",
30
+ "scripts": {
31
+ "build": "tsc && gulp build:icons",
32
+ "dev": "tsc --watch",
33
+ "format": "prettier nodes credentials --write",
34
+ "lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" package.json",
35
+ "lintfix": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" package.json --fix",
36
+ "prepublishOnly": "npm run build && npm run lint",
37
+ "test": "jest",
38
+ "test:watch": "jest --watch",
39
+ "test:coverage": "jest --coverage"
40
+ },
41
+ "files": [
42
+ "dist"
43
+ ],
44
+ "n8n": {
45
+ "n8nNodesApiVersion": 1,
46
+ "credentials": [
47
+ "dist/credentials/CteraAiMcpApi.credentials.js",
48
+ "dist/credentials/CteraPortalOAuth2Api.credentials.js"
49
+ ],
50
+ "nodes": [
51
+ "dist/nodes/CteraAi/CteraAi.node.js",
52
+ "dist/nodes/CteraFilesystem/CteraFilesystem.node.js"
53
+ ]
54
+ },
55
+ "devDependencies": {
56
+ "@types/jest": "^29.5.12",
57
+ "@typescript-eslint/eslint-plugin": "^5.62.0",
58
+ "@typescript-eslint/parser": "^5.59.0",
59
+ "eslint": "^8.40.0",
60
+ "eslint-plugin-n8n-nodes-base": "^1.12.0",
61
+ "gulp": "^5.0.1",
62
+ "jest": "^29.7.0",
63
+ "n8n-workflow": "^1.0.0",
64
+ "prettier": "^2.8.8",
65
+ "ts-jest": "^29.1.2",
66
+ "typescript": "^5.0.4"
67
+ },
68
+ "peerDependencies": {
69
+ "n8n-workflow": "^1.0.0"
70
+ }
71
+ }