@crm-kraft/n8n-nodes-close 2.0.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,60 @@
1
+ {
2
+ "name": "@crm-kraft/n8n-nodes-close",
3
+ "version": "2.0.5",
4
+ "description": "n8n community node for Close CRM — full action node + comprehensive webhook trigger covering all Zapier-equivalent events including Published Custom Activity.",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "n8n",
8
+ "close",
9
+ "crm",
10
+ "close.com",
11
+ "closecrm",
12
+ "automation"
13
+ ],
14
+ "license": "MIT",
15
+ "author": {
16
+ "name": "CRM Kraft"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/crm-kraft/n8n-nodes-close.git"
21
+ },
22
+ "main": "index.js",
23
+ "scripts": {
24
+ "build": "tsc && npm run copy-icons",
25
+ "copy-icons": "copyfiles -u 2 \"nodes/Close/*.svg\" dist/nodes/ && cp dist/nodes/close.svg dist/nodes/Close/close.svg && cp dist/nodes/close.svg dist/nodes/CloseTrigger/close.svg",
26
+ "dev": "tsc --watch",
27
+ "format": "prettier nodes credentials --write",
28
+ "lint": "eslint nodes credentials package.json",
29
+ "lint:fix": "eslint nodes credentials package.json --fix",
30
+ "prepublishOnly": "npm run build",
31
+ "typecheck": "tsc --noEmit"
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "n8n": {
37
+ "n8nNodesApiVersion": 1,
38
+ "credentials": [
39
+ "dist/credentials/CloseApi.credentials.js"
40
+ ],
41
+ "nodes": [
42
+ "dist/nodes/Close/Close.node.js",
43
+ "dist/nodes/CloseTrigger/CloseTrigger.node.js"
44
+ ]
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^20.11.5",
48
+ "@typescript-eslint/eslint-plugin": "^6.19.0",
49
+ "@typescript-eslint/parser": "^6.19.0",
50
+ "copyfiles": "^2.4.1",
51
+ "eslint": "^8.56.0",
52
+ "eslint-plugin-n8n-nodes-base": "^1.16.2",
53
+ "n8n-workflow": "^1.24.0",
54
+ "prettier": "^3.2.4",
55
+ "typescript": "^5.3.3"
56
+ },
57
+ "peerDependencies": {
58
+ "n8n-workflow": "*"
59
+ }
60
+ }