mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 22:12:26 -05:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "n8n-nodes-s4ds",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"keywords": [
|
|
"n8n-community-node-package"
|
|
],
|
|
"license": "MIT",
|
|
"homepage": "",
|
|
"author": {
|
|
"name": "",
|
|
"email": ""
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/<...>/n8n-nodes-<...>.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.15"
|
|
},
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "npx rimraf dist && tsc && npx gulp build:icons",
|
|
"dev": "tsc --watch",
|
|
"format": "prettier nodes credentials --write",
|
|
"lint": "eslint nodes credentials package.json",
|
|
"lintfix": "eslint nodes credentials package.json --fix",
|
|
"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"
|
|
],
|
|
"nodes": [
|
|
"dist/nodes/S4DSMain/S4DSMain.node.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "~8.32.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
"gulp": "^4.0.2",
|
|
"gulp-cli": "^2.3.0",
|
|
"prettier": "^3.5.3",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"peerDependencies": {
|
|
"n8n-workflow": "*"
|
|
}
|
|
}
|