-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "n8n-nodes-sendit",
"version": "1.2.1",
"description": "n8n community node for SendIt - Multi-platform social media publishing",
"keywords": [
"n8n-community-node-package",
"social-media",
"linkedin",
"instagram",
"threads",
"tiktok",
"twitter",
"publishing",
"scheduling",
"analytics"
],
"license": "MIT",
"homepage": "https://sendit.infiniteappsai.com",
"author": {
"name": "SendIt",
"email": "support@infiniteappsai.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shree-git/n8n-nodes-sendit.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && npm run copy:icons",
"copy:icons": "mkdir -p dist/nodes/SendIt && cp nodes/SendIt/*.svg dist/nodes/SendIt/",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials --fix",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"testenv:up": "npm run build && docker compose -f testing/docker-compose.yml --env-file testing/.env up -d --wait",
"testenv:down": "docker compose -f testing/docker-compose.yml --env-file testing/.env down --remove-orphans",
"testenv:logs": "docker compose -f testing/docker-compose.yml --env-file testing/.env logs -f n8n",
"testenv:reset": "docker compose -f testing/docker-compose.yml --env-file testing/.env down -v --remove-orphans"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/SendItApi.credentials.js"
],
"nodes": [
"dist/nodes/SendIt/SendIt.node.js",
"dist/nodes/SendIt/SendItTrigger.node.js"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@types/node": "^20.10.0",
"eslint": "^9.17.0",
"n8n-workflow": "^1.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0",
"vitest": "^2.1.9"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}