khabaroff-studio_obsidian-w.../plugin/package.json
Sergei Khabarov 289fed324f Bump version to 2.0.3 for marketplace resubmission
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-22 19:28:18 +04:00

32 lines
938 B
JSON

{
"name": "obsidian-webhooks-server",
"version": "2.0.3",
"description": "Receive webhooks and create/update notes in your vault via self-hosted Go server with real-time SSE updates",
"main": "main.js",
"scripts": {
"dev": "bun build main.ts --outdir=. --target=node --watch --external obsidian --format=cjs",
"build": "bun build main.ts --outdir=. --target=node --minify --external obsidian --format=cjs",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"plugin",
"webhooks",
"automation",
"sse",
"real-time"
],
"author": "khabaroff",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-plugin-obsidianmd": "^0.1.9",
"obsidian": "latest",
"tslib": "^2.8.1",
"typescript": "^5.3.0"
},
"dependencies": {}
}