-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "@cdmx/n8n-nodes-input-validator",
"version": "1.0.9",
"description": "",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://github.com/cdmx1/n8n-nodes-input-validator#readme",
"author": {
"name": "cdmx1",
"url": "https://github.com/cdmx1"
},
"repository": {
"type": "git",
"url": "https://github.com/cdmx1/n8n-nodes-input-validator.git"
},
"bugs": {
"url": "https://github.com/cdmx1/n8n-nodes-input-validator/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"dist/nodes/ValidatorNode/ValidatorNode.node.js"
]
},
"devDependencies": {
"@types/node": "^22.5.5",
"@typescript-eslint/parser": "~8.5",
"eslint-plugin-n8n-nodes-base": "^1.16.2",
"gulp": "^5.0.0",
"n8n-workflow": "*",
"prettier": "^3.3.3",
"typescript": "~5.6.2"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
}
}