-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.56 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
{
"name": "n8n-nodes-helicone",
"version": "1.0.4",
"description": "n8n node for Helicone AI gateway and observability",
"license": "MIT",
"homepage": "https://helicone.ai",
"keywords": [
"n8n-community-node-package",
"n8n",
"helicone",
"llm",
"observability",
"ai",
"openai",
"anthropic",
"monitoring"
],
"author": {
"name": "Helicone",
"email": "support@helicone.ai"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Helicone/n8n-nodes-helicone"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials",
"lintfix": "eslint nodes credentials --fix",
"prepublishOnly": "npm run build && npm run lint -s"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/HeliconeApi.credentials.js"
],
"nodes": [
"dist/nodes/Helicone/Helicone.node.js"
]
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"globals": "^16.3.0",
"gulp": "^4.0.2",
"jsonc-eslint-parser": "^2.4.0",
"n8n-workflow": "^1.106.0",
"prettier": "^2.7.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@langchain/openai": ">=0.0.14",
"n8n-workflow": "*"
},
"dependencies": {
"n8n-nodes-helicone": "^1.0.2",
"zod": "^3.23.0"
}
}