n8n-nodes-starter/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2019-10-03 08:53:03 +02:00
{
"name": "n8n-nodes-TODO-YOUR-NODE-HERE",
"version": "0.1.0",
"description": "TODO YOUR DESCRIPTION HERE",
"keywords": [
"n8n-community-node-package"
],
2022-06-17 13:51:26 -07:00
"license": "MIT",
"homepage": "TODO",
"author": {
"name": "TODO",
"email": "TODO"
},
"repository": {
"type": "git",
"url": "https://github.com/TODO/n8n-nodes-TODO.git"
},
"engines": {
2025-05-13 14:26:01 +01:00
"node": ">=20.15"
},
"main": "index.js",
"scripts": {
"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",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json",
"getPackageName": "echo ${npm_package_name}"
},
"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-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": "*"
}
}