n8n-nodes-starter/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2019-10-03 08:53:03 +02:00
{
2025-06-22 21:51:38 -05:00
"name": "n8n-nodes-s4ds",
"version": "0.1.0",
"description": "",
"keywords": [
"n8n-community-node-package"
],
2022-06-17 13:51:26 -07:00
"license": "MIT",
"homepage": "",
"author": {
"name": "",
"email": ""
},
"repository": {
"type": "git",
"url": "https://github.com/<...>/n8n-nodes-<...>.git"
},
"engines": {
2025-05-13 14:26:01 +01:00
"node": ">=20.15"
},
"main": "index.js",
"scripts": {
2025-07-19 16:41:02 -05:00
"build": "npx rimraf dist && tsc && npx 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"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/S4DSApi.credentials.js"
2019-10-03 08:53:03 +02:00
],
"nodes": [
2025-07-10 16:01:04 -05:00
"dist/nodes/S4DSMain/S4DSMain.node.js"
]
},
"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",
2025-07-10 17:07:51 -05:00
"gulp": "^4.0.2",
2025-07-19 16:41:02 -05:00
"gulp-cli": "^2.3.0",
2025-05-13 14:26:01 +01:00
"prettier": "^3.5.3",
"typescript": "^5.8.2"
2024-05-02 11:47:31 +02:00
},
"peerDependencies": {
"n8n-workflow": "*"
}
2025-07-10 17:07:51 -05:00
}