mirror of
https://github.com/alamion/obsidian-jira-sync.git
synced 2026-07-22 05:43:04 +00:00
- Split the current Update WorkLog command into Batch and Manually variants - By default, not-in-the-mapping (in-code or custom one) fields won't update to Jira - Fixed existing fields mapping import in production version - Better default template if none available found - Fixed issue when template file could not been found - Fixed work with PAT - optimized statistics.md inner js size with esbuild
29 lines
792 B
JSON
29 lines
792 B
JSON
{
|
|
"name": "obsidian-sample-plugin",
|
|
"version": "1.1.7",
|
|
"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",
|
|
"buildObsidian": "node buildStatistics.mjs"
|
|
},
|
|
"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": {
|
|
"acorn": "^8.14.1",
|
|
"yaml": "^2.7.0"
|
|
}
|
|
}
|