generated from n8n-io/n8n-nodes-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
121 lines (121 loc) · 3.52 KB
/
package.json
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "n8n-nodes-betterpeople",
"version": "2.4.1",
"description": "Better People Nodes for n8n",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://betterpeople.studio",
"author": {
"name": "Better People"
},
"repository": {
"type": "git",
"url": "https://github.com/akpenou/custom-n8n.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/MidjourneyApi.credentials.js",
"dist/credentials/OnOffApi.credentials.js"
],
"nodes": [
"dist/nodes/MarkdownToGoogleSlides/MarkdownToGoogleSlides.node.js",
"dist/nodes/YoutubeTranscript/YoutubeTranscript.node.js",
"dist/nodes/NotionMarkdown/NotionMarkdown.node.js",
"dist/nodes/Midjourney/Midjourney.node.js",
"dist/nodes/Turndown/Turndown.node.js",
"dist/nodes/OnOff/Onoff.node.js"
]
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.6",
"@types/extend": "^3.0.1",
"@types/jsonfile": "^6.0.0",
"@types/lodash": "^4.14.200",
"@types/lowlight": "^0.0.2",
"@types/mkdirp": "^1.0.1",
"@types/parse-color": "^1.0.0",
"@types/probe-image-size": "^7.0.0",
"@types/promise-retry": "^1.1.3",
"@types/request-promise-native": "^1.0.17",
"@types/sharp": "^0.32.0",
"@types/tmp": "^0.2.0",
"@types/turndown": "^5.0.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/parser": "~5.45",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^5.0.0",
"n8n-core": "*",
"n8n-workflow": "*",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"dependencies": {
"@notionhq/client": "^2.2.13",
"@tryfabric/martian": "^1.2.0",
"@types/lowdb": "^1.0.10",
"@types/markdown-it": "^12.0.2",
"@types/parse5": "^6.0.0",
"dayjs": "^1.11.13",
"debug": "^4.1.1",
"extend": "^3.0.0",
"file-url": "^3.0.0",
"google-auth-library": "^7.14.1",
"googleapis": "^118.0.0",
"googleapis-common": "^7.0.1",
"highlight.js": "^10.7.3",
"inline-styles-parse": "^1.2.0",
"jsonfile": "^6.0.1",
"layout": "^2.2.0",
"lodash": "^4.17.11",
"lowdb": "^1.0",
"lowlight": "^1.20.0",
"markdown": "^0.5.0",
"markdown-it": "^12.0.6",
"markdown-it-attrs": "^4.0.0",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-expand-tabs": "^1.0.13",
"markdown-it-fence": "^0.1.3",
"markdown-it-lazy-headers": "^0.1.3",
"markdown-it-video": "^0.6.3",
"mathjax-node": "^2.1.1",
"midjourney": "^4.3.13",
"mime-types": "^2.1.22",
"mkdirp": "^1.0.4",
"native-css": "^1.2.5",
"node-fetch": "^2.3.0",
"notion-to-md": "^3.1.1",
"opener": "^1.4.2",
"parse-color": "^1.0.0",
"parse5": "^6.0.1",
"path": "^0.12.7",
"probe-image-size": "^7.2.1",
"promise": "^8.0.3",
"promise-retry": "^2.0.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"sharp": "^0.33.3",
"tmp": "0.2.1",
"tmp-promise": "^3.0.2",
"turndown": "^7.1.3",
"url": "^0.11.3",
"uuid": "^8.3.2",
"youtube-transcript": "^1.2.1"
}
}