-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.21 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
80
81
82
{
"name": "@imagekit/n8n-nodes-imagekit",
"version": "1.0.6",
"description": "n8n community node for the ImageKit Media APIs",
"license": "MIT",
"homepage": "https://github.com/imagekit-developer/n8n-nodes-imagekit",
"keywords": [
"n8n-community-node-package",
"imagekit",
"image-upload",
"media-management",
"tags",
"metadata",
"cloud-storage",
"image-optimization",
"digital-asset-management"
],
"author": {
"name": "ImageKit",
"email": "developer@imagekit.io",
"url": "https://imagekit.io"
},
"contributors": [
"ImageKit Developer <developer@imagekit.io>",
"Abhinav Dhiman <abhinav@imagekit.io>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imagekit-developer/n8n-nodes-imagekit.git"
},
"scripts": {
"build": "rm -rf dist && n8n-node build",
"build:watch": "tsc --watch",
"dev": "rm -rf dist && n8n-node dev",
"lint": "n8n-node lint",
"lint:fix": "n8n-node lint --fix",
"release": "n8n-node release",
"prepublishOnly": "n8n-node prerelease",
"test": "jest",
"test:watch": "jest --watch",
"generate": "tsx scripts/generate.ts",
"generate:check": "tsx scripts/generate.ts && git diff --exit-code -- nodes/Imagekit/resources/_generated openapi/config.json",
"prepare-dev": "husky"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/ImagekitApi.credentials.js",
"dist/credentials/ImagekitWebhookApi.credentials.js"
],
"nodes": [
"dist/nodes/Imagekit/Imagekit.node.js",
"dist/nodes/Imagekit/ImagekitTrigger.node.js"
]
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@n8n/node-cli": "^0.28.0",
"@release-it/conventional-changelog": "^11.0.0",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"eslint": "9.32.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"js-yaml": "^4.1.1",
"prettier": "3.6.2",
"release-it": "^20.0.1",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "5.9.2"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"publishConfig": {
"access": "public"
}
}