-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.11 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-wecom",
"version": "0.4.10",
"description": "Complete n8n integration for WeCom (企业微信/WeChat Work). Send messages, manage contacts, departments, customer relations, meetings, documents, email, calendar, approvals, and more. Full-featured enterprise WeChat automation node.",
"license": "MIT",
"homepage": "https://github.com/funcodingdev/n8n-nodes-wecom",
"keywords": [
"n8n-community-node-package",
"wecom",
"wechat work",
"enterprise wechat",
"企业微信",
"weixin",
"qyweixin",
"wechat",
"messaging",
"contacts",
"crm",
"automation",
"workflow",
"china",
"business",
"communication",
"notification",
"webhook",
"trigger"
],
"author": {
"name": "funcodingdev",
"email": "funcodingdev@foxmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/funcodingdev/n8n-nodes-wecom.git"
},
"scripts": {
"build": "n8n-node build",
"build:watch": "tsc --watch",
"dev": "n8n-node dev",
"lint": "n8n-node lint",
"lint:fix": "n8n-node lint --fix",
"release": "n8n-node release",
"release:beta": "npm run lint && npm run build && release-it --preRelease=beta",
"prepublishOnly": "npm run lint && npm run build"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"strict": false,
"credentials": [
"dist/credentials/WeComApi.credentials.js",
"dist/credentials/WeComWebhookApi.credentials.js",
"dist/credentials/WeComReceiveApi.credentials.js",
"dist/credentials/WeComSuiteReceiveApi.credentials.js"
],
"nodes": [
"dist/nodes/WeComBase/WeComBase.node.js",
"dist/nodes/WeComOffice/WeComOffice.node.js",
"dist/nodes/WeComPassiveTrigger/WeComPassiveTrigger.node.js",
"dist/nodes/WeComTrigger/WeComTrigger.node.js",
"dist/nodes/WeComSuiteTrigger/WeComSuiteTrigger.node.js",
"dist/nodes/WeComAiBotTrigger/WeComAiBotTrigger.node.js",
"dist/nodes/WeComWechat/WeComWechat.node.js"
]
},
"devDependencies": {
"@n8n/node-cli": "*",
"@types/node": "^24.9.1",
"eslint": "9.32.0",
"prettier": "3.6.2",
"release-it": "^19.0.4",
"typescript": "5.9.2"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}