-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 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
{
"name": "@runpod/n8n-nodes",
"version": "1.1.0",
"description": "n8n Community Node: Runpod Public Endpoints",
"author": "Zach Gulsby <zach.gulsby@runpod.io>",
"license": "MIT",
"keywords": [
"n8n-community-node-package",
"runpod",
"ai",
"text-generation",
"image-generation",
"video-generation",
"audio-processing",
"workflow-automation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/runpod/n8n-nodes.git"
},
"bugs": {
"url": "https://github.com/runpod/n8n-nodes/issues"
},
"homepage": "https://github.com/runpod/n8n-nodes#readme",
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"./dist/credentials/RunpodPublicEndpoints.credentials.js"
],
"nodes": [
"./dist/nodes/RunpodPublicEndpoints.node.js"
]
},
"main": "dist/nodes/RunpodPublicEndpoints.node.js",
"types": "dist/nodes/RunpodPublicEndpoints.node.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"test/example-workflows"
],
"scripts": {
"build": "tsc -p tsconfig.json && cp src/nodes/RunpodPublicEndpoints/runpod-cube.svg dist/nodes/",
"lint": "eslint .",
"dev": "n8n dev",
"prepare": "npm run build",
"test": "echo \"No tests specified\" && exit 0",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"peerDependencies": {
"n8n-workflow": ">=1.0.0",
"n8n-core": ">=1.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"typescript": "^5.4.0"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
},
"publishConfig": {
"access": "public"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/runpod"
}
}