n8n-nodes-cribops 0.1.5

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 ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "n8n-nodes-cribops",
3
+ "version": "0.1.5",
4
+ "description": "n8n community node for Cribops AI platform integration",
5
+ "keywords": [
6
+ "n8n-community-node-package"
7
+ ],
8
+ "license": "MIT",
9
+ "author": {
10
+ "name": "CloudBedrock",
11
+ "email": "support@cloudbedrock.com"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/CloudBedrock/n8n-nodes-cribops.git"
16
+ },
17
+ "homepage": "https://cribops.com",
18
+ "bugs": {
19
+ "url": "https://github.com/CloudBedrock/n8n-nodes-cribops/issues"
20
+ },
21
+ "engines": {
22
+ "node": ">=20.15"
23
+ },
24
+ "scripts": {
25
+ "build": "npx rimraf dist && tsc && gulp build:icons && cp package.json dist/",
26
+ "dev": "tsc --watch",
27
+ "format": "prettier nodes credentials --write",
28
+ "lint": "eslint nodes/**/*.ts credentials/**/*.ts --ext .ts",
29
+ "lintfix": "eslint nodes/**/*.ts credentials/**/*.ts --ext .ts --fix",
30
+ "prepublishOnly": "npm run build && npm run lint",
31
+ "test": "npm run build && n8n-node-dev test"
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "n8n": {
37
+ "n8nNodesApiVersion": 1,
38
+ "credentials": [
39
+ "dist/credentials/CribopsApi.credentials.js"
40
+ ],
41
+ "nodes": [
42
+ "dist/nodes/Cribops/Cribops.node.js",
43
+ "dist/nodes/CribopsTrigger/CribopsTrigger.node.js"
44
+ ]
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^24.0.12",
48
+ "@typescript-eslint/parser": "~8.32.0",
49
+ "eslint": "^8.57.0",
50
+ "eslint-plugin-n8n-nodes-base": "^1.16.3",
51
+ "gulp": "^5.0.0",
52
+ "n8n-workflow": "^1.82.0",
53
+ "prettier": "^3.5.0",
54
+ "rimraf": "^6.0.1",
55
+ "typescript": "^5.8.3",
56
+ "@aws-sdk/client-sqs": "^3.729.0",
57
+ "@aws-sdk/client-sns": "^3.729.0"
58
+ }
59
+ }