Files
obsidian-api/packages/n8n-nodes-obsidian-api/package.json
T
daniel156161 3bda4002fe
Build and Push Docker Container / build-and-push (push) Successful in 4m29s
fix: allow vault info under path scope and clarify API errors
- Allow vault and vaults commands when a token has path restrictions

- Treat vault/vaults as pathless metadata commands in policy checks

- Add allowed commands, vaults and paths to 403 permission errors

- Surface real JWT failure reason in 401 instead of generic Unauthorized

- Report missing, malformed and empty Bearer tokens distinctly

- Catch httpRequest failures in the n8n node to avoid circular JSON

- Map API errors to clean NodeApiError with status code and detail

- Support continueOnFail with per-item error output in the n8n node

- Push a versioned image tag from pyproject in the CI workflow

- Bump server to 1.0.2 and n8n node package to 0.2.1

- Add tests for vault info access and richer auth error messages
2026-06-24 11:41:18 +02:00

51 lines
1.3 KiB
JSON

{
"name": "n8n-nodes-obsidian-cli-api",
"version": "0.2.1",
"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": "*"
}
}