[READ-ONLY] Mirror of https://github.com/andrioid/n8n-test.
0

Configure Feed

Select the types of activity you want to include in your feed.

n8n-test / package.json
1.1 kB 52 lines
1{ 2 "name": "n8n-nodes-<...>", 3 "version": "0.1.0", 4 "description": "", 5 "license": "MIT", 6 "homepage": "", 7 "keywords": [ 8 "n8n-community-node-package" 9 ], 10 "author": { 11 "name": "", 12 "email": "" 13 }, 14 "repository": { 15 "type": "git", 16 "url": "https://github.com/<...>/n8n-nodes-<...>.git" 17 }, 18 "scripts": { 19 "build": "n8n-node build", 20 "build:watch": "tsc --watch", 21 "dev": "n8n-node dev", 22 "lint": "n8n-node lint", 23 "lint:fix": "n8n-node lint --fix", 24 "release": "n8n-node release", 25 "prepublishOnly": "n8n-node prerelease" 26 }, 27 "files": [ 28 "dist" 29 ], 30 "n8n": { 31 "n8nNodesApiVersion": 1, 32 "strict": true, 33 "credentials": [ 34 "dist/credentials/GithubIssuesApi.credentials.js", 35 "dist/credentials/GithubIssuesOAuth2Api.credentials.js" 36 ], 37 "nodes": [ 38 "dist/nodes/GithubIssues/GithubIssues.node.js", 39 "dist/nodes/Example/Example.node.js" 40 ] 41 }, 42 "devDependencies": { 43 "@n8n/node-cli": "*", 44 "eslint": "9.32.0", 45 "prettier": "3.6.2", 46 "release-it": "^19.0.4", 47 "typescript": "5.9.2" 48 }, 49 "peerDependencies": { 50 "n8n-workflow": "*" 51 } 52}