be78e3aa00
Build and Push Docker Container / build-and-push (push) Successful in 4m15s
- Add daily_note_path_for_vault to read .obsidian/daily-notes.json - Honor configured folder and date format for daily commands - Add moment_to_strftime to translate Obsidian date tokens - Authorize pathless daily:* commands against the resolved path - Pick vault root from token vault, cwd, or default vault - Normalize n8n httpRequest response to avoid circular JSON output - Force returnFullResponse false and parse body to plain result - Bump n8n-nodes-obsidian-cli-api to 0.2.0 - Add tests for allowed and denied scoped daily commands
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "n8n-nodes-obsidian-cli-api",
|
|
"version": "0.2.0",
|
|
"description": "n8n community nodes for the Obsidian API Docker service backed by the official Obsidian CLI.",
|
|
"license": "MIT",
|
|
"homepage": "https://git.yiprawr.dev/Docker/obsidian-api",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@git.yiprawr.dev/Docker/obsidian-api.git",
|
|
"directory": "packages/n8n-nodes-obsidian-api"
|
|
},
|
|
"keywords": [
|
|
"n8n-community-node-package",
|
|
"n8n",
|
|
"obsidian",
|
|
"obsidian-cli",
|
|
"notes"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json && mkdir -p dist/nodes/ObsidianApi && cp nodes/ObsidianApi/obsidian.svg dist/nodes/ObsidianApi/obsidian.svg",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"lint": "eslint nodes credentials shared --ext .ts"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"nodes",
|
|
"credentials",
|
|
"shared"
|
|
],
|
|
"n8n": {
|
|
"n8nNodesApiVersion": 1,
|
|
"credentials": [
|
|
"dist/credentials/ObsidianApi.credentials.js"
|
|
],
|
|
"nodes": [
|
|
"dist/nodes/ObsidianApi/ObsidianApi.node.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.0",
|
|
"eslint": "^9.29.0",
|
|
"n8n-workflow": "^1.82.0",
|
|
"typescript": "^5.9.0"
|
|
},
|
|
"peerDependencies": {
|
|
"n8n-workflow": "*"
|
|
}
|
|
}
|