-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.71 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-ticktick",
"version": "2.2.2",
"description": "TickTick module for custom n8n node.",
"keywords": [
"n8n-community-node-package",
"n8n-nodes",
"n8n",
"workflow",
"automation",
"ticktick",
"task",
"todo",
"productivity",
"api",
"integration"
],
"license": "MIT",
"homepage": "https://github.com/hansdoebel/n8n-nodes-ticktick#readme",
"author": {
"name": "Hans Doebel",
"email": "hansdev@mailbox.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hansdoebel/n8n-nodes-ticktick.git"
},
"bugs": {
"url": "https://github.com/hansdoebel/n8n-nodes-ticktick/issues"
},
"engines": {
"node": ">=18.10"
},
"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",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"funding": {
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/hansdoebel"
},
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/TickTickOAuth2Api.credentials.js",
"dist/credentials/TickTickTokenApi.credentials.js",
"dist/credentials/TickTickSessionApi.credentials.js"
],
"nodes": [
"dist/nodes/TickTick/TickTick.node.js",
"dist/nodes/TickTick/TickTickTrigger.node.js"
]
},
"devDependencies": {
"@n8n/node-cli": "^0.31.0",
"@types/luxon": "^3.4.2",
"@types/node": "^25.9.1",
"eslint": "^9.39.4",
"luxon": "^3.5.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}