2019-10-03 08:53:03 +02:00
|
|
|
{
|
2025-06-22 21:51:38 -05:00
|
|
|
"name": "n8n-nodes-s4ds",
|
2022-06-14 15:35:59 +02:00
|
|
|
"version": "0.1.0",
|
2022-08-02 15:18:09 +02:00
|
|
|
"description": "",
|
2022-06-14 15:35:59 +02:00
|
|
|
"keywords": [
|
|
|
|
|
"n8n-community-node-package"
|
|
|
|
|
],
|
2022-06-17 13:51:26 -07:00
|
|
|
"license": "MIT",
|
2022-08-02 15:18:09 +02:00
|
|
|
"homepage": "",
|
2022-06-14 15:35:59 +02:00
|
|
|
"author": {
|
2022-08-02 15:18:09 +02:00
|
|
|
"name": "",
|
|
|
|
|
"email": ""
|
2022-06-14 15:35:59 +02:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2022-08-02 15:18:09 +02:00
|
|
|
"url": "https://github.com/<...>/n8n-nodes-<...>.git"
|
2022-06-14 15:35:59 +02:00
|
|
|
},
|
2024-07-04 19:44:50 +02:00
|
|
|
"engines": {
|
2025-05-13 14:26:01 +01:00
|
|
|
"node": ">=20.15"
|
2024-07-04 19:44:50 +02:00
|
|
|
},
|
2022-06-14 15:35:59 +02:00
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2025-05-27 12:09:25 +01:00
|
|
|
"build": "npx rimraf dist && tsc && gulp build:icons",
|
2022-06-27 11:57:31 +02:00
|
|
|
"dev": "tsc --watch",
|
2022-06-27 11:45:26 +02:00
|
|
|
"format": "prettier nodes credentials --write",
|
2022-12-29 17:56:02 +01:00
|
|
|
"lint": "eslint nodes credentials package.json",
|
|
|
|
|
"lintfix": "eslint nodes credentials package.json --fix",
|
2025-06-05 09:53:17 +03:00
|
|
|
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
2022-06-14 15:35:59 +02:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"n8n": {
|
2022-07-11 14:30:25 +02:00
|
|
|
"n8nNodesApiVersion": 1,
|
2022-06-14 15:35:59 +02:00
|
|
|
"credentials": [
|
2022-07-25 17:13:58 +02:00
|
|
|
"dist/credentials/ExampleCredentialsApi.credentials.js",
|
2022-06-14 21:29:18 +02:00
|
|
|
"dist/credentials/HttpBinApi.credentials.js"
|
2019-10-03 08:53:03 +02:00
|
|
|
],
|
2022-06-14 15:35:59 +02:00
|
|
|
"nodes": [
|
2022-06-14 19:52:28 +02:00
|
|
|
"dist/nodes/ExampleNode/ExampleNode.node.js",
|
2025-06-23 21:39:13 -05:00
|
|
|
"dist/nodes/ExampleNode2/ExampleNode2.node.js",
|
2022-06-14 19:52:28 +02:00
|
|
|
"dist/nodes/HttpBin/HttpBin.node.js"
|
2022-06-14 15:35:59 +02:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-05-13 14:26:01 +01:00
|
|
|
"@typescript-eslint/parser": "~8.32.0",
|
|
|
|
|
"eslint": "^8.57.0",
|
|
|
|
|
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
|
|
|
"gulp": "^5.0.0",
|
|
|
|
|
"prettier": "^3.5.3",
|
|
|
|
|
"typescript": "^5.8.2"
|
2024-05-02 11:47:31 +02:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"n8n-workflow": "*"
|
2022-06-14 15:35:59 +02:00
|
|
|
}
|
2025-05-13 14:26:01 +01:00
|
|
|
}
|