-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2 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
{
"name": "n8n-nodes-aws-bedrock-assumerole",
"version": "1.6.4",
"description": "n8n node for AWS Bedrock with AssumeRole authentication",
"keywords": [
"n8n-community-node-package",
"n8n",
"aws",
"bedrock",
"claude",
"ai",
"llm",
"image-generation",
"nova-canvas",
"titan-image"
],
"license": "MIT",
"homepage": "https://github.com/cabify/n8n-nodes-aws-bedrock-assumerole",
"author": {
"name": "Cabify Business Automation Team",
"email": "business-automation@cabify.com"
},
"repository": {
"type": "git",
"url": "https://github.com/cabify/n8n-nodes-aws-bedrock-assumerole.git"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run copy-icons",
"copy-icons": "cp icons/bedrock.svg dist/nodes/ && cp icons/aws.svg dist/credentials/",
"dev": "tsc --watch",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:integration": "jest __tests__/integration",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/AwsAssumeRole.credentials.js"
],
"nodes": [
"dist/nodes/AwsBedrockAssumeRole.node.js",
"dist/nodes/AwsBedrockChatModel.node.js"
]
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"dotenv": "^17.2.3",
"eslint": "^8.37.0",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"jest": "^29.5.0",
"n8n-workflow": "*",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.0.0",
"@aws-sdk/client-sts": "^3.0.0"
},
"peerDependencies": {
"n8n-workflow": "*",
"@langchain/core": ">=0.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}