n8n-nodes-fleeting-notes
Version:
n8n community node for managing fleeting notes in Obsidian vault
85 lines (84 loc) • 2.55 kB
JSON
{
"name": "n8n-nodes-fleeting-notes",
"version": "0.1.6",
"description": "n8n community node for managing fleeting notes in Obsidian vault",
"keywords": [
"n8n-community-node-package",
"obsidian",
"fleeting-notes",
"note-taking",
"pkm",
"knowledge-management",
"n8n",
"workflow",
"automation"
],
"license": "MIT",
"homepage": "https://github.com/anpigon/n8n-nodes-fleeting-notes-obsidian",
"author": {
"name": "anpigon",
"email": "markan82@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anpigon/n8n-nodes-fleeting-notes.git"
},
"bugs": {
"url": "https://github.com/anpigon/n8n-nodes-fleeting-notes/issues"
},
"engines": {
"node": ">=18.10",
"pnpm": ">=9.1"
},
"packageManager": "pnpm@9.1.4",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "rm -rf dist && tsc && 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": "pnpm build && pnpm lint -c .eslintrc.prepublish.js nodes credentials package.json",
"test-local": "pnpm build && npm link && cd ~/.n8n/custom && npm link n8n-nodes-fleeting-notes-obsidian && npx n8n start"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/FleetingNotes/FleetingNotesApi.credentials.js"
],
"nodes": [
"dist/nodes/FleetingNotes/FleetingNotes.node.js"
]
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@types/node": "^22.13.10",
"@types/uuid": "^9.0.8",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^4.0.2",
"n8n-core": "^1.14.1",
"n8n-workflow": "^1.70.0",
"prettier": "^3.5.3",
"typescript": "^5.5.3"
},
"peerDependencies": {
"n8n-workflow": ">=0.x"
},
"dependencies": {
"@supabase/supabase-js": "^2.39.7",
"crypto-js": "^4.2.0",
"undici": "^7.5.0",
"uuid": "^9.0.1"
}
}