-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.27 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.27 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
83
84
85
86
{
"name": "n8n-nodes-deribit",
"version": "1.0.0",
"description": "A comprehensive n8n community node for Deribit cryptocurrency derivatives exchange providing 11 resources and 80+ operations for trading options, futures, perpetuals, and managing portfolios. Includes OAuth 2.0 authentication, testnet support, and real-time polling triggers.",
"license": "BUSL-1.1",
"author": {
"name": "Velocity BPA",
"email": "licensing@velobpa.com",
"url": "https://velobpa.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Velocity-BPA/n8n-nodes-deribit.git"
},
"homepage": "https://github.com/Velocity-BPA/n8n-nodes-deribit#readme",
"bugs": {
"url": "https://github.com/Velocity-BPA/n8n-nodes-deribit/issues"
},
"keywords": [
"n8n",
"n8n-community-node-package",
"deribit",
"cryptocurrency",
"options",
"futures",
"perpetuals",
"derivatives",
"trading",
"bitcoin",
"ethereum",
"btc",
"eth",
"crypto",
"exchange"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/DeribitApi.credentials.js"
],
"nodes": [
"dist/nodes/Deribit/Deribit.node.js",
"dist/nodes/Deribit/DeribitTrigger.node.js"
]
},
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.ts\"",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"n8n-workflow": "*",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"engines": {
"node": ">=18.0.0"
}
}