n8n-nodes-starter/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2019-10-03 08:53:03 +02:00
{
2025-05-12 13:42:57 +01:00
"name": "n8n-nodes-<...>",
"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-12 13:39:34 +01:00
"node": ">=20.15"
},
"main": "index.js",
"scripts": {
2022-06-27 11:52:17 +02:00
"build": "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-05-12 13:39:34 +01:00
"prepublishOnly": "npm build && npm lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
2022-07-25 17:13:58 +02:00
"dist/credentials/ExampleCredentialsApi.credentials.js",
"dist/credentials/HttpBinApi.credentials.js"
2019-10-03 08:53:03 +02:00
],
"nodes": [
"dist/nodes/ExampleNode/ExampleNode.node.js",
"dist/nodes/HttpBin/HttpBin.node.js"
]
},
"devDependencies": {
2025-05-12 13:39:34 +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": "*"
2025-05-12 13:42:57 +01:00
}
}