alamion_obsidian-jira-sync/package.json
Alamion 9248212425
small fixes
- feedback if field can't be processed from jira format to string properly
  - found an in-code style, carried it to styles.css
  - replaced plugin.app.vault.modify() with plugin.app.vault.process() for atomization
  - html to markdown for description
  - now frontmatter data on update has priority over file content one as it saves it's initial type.
  - several changes for logging work, now it's more intuitive.
2025-03-20 02:14:28 +03:00

30 lines
800 B
JSON

{
"name": "obsidian-sample-plugin",
"version": "1.0.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.25.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@types/turndown": "^5.0.5",
"acorn": "^8.14.1",
"turndown": "^7.2.0",
"yaml": "^2.7.0"
}
}