inital commit

This commit is contained in:
2025-05-30 22:21:59 +03:00
commit 67374bf430
19 changed files with 3265 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "jira-issue-notes",
"version": "1.0.0",
"description": "Plugin for fetching and managing Jira issues directly from your notes.",
"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",
"@types/nunjucks": "^3.2.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"punycode": "^2.3.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"node-fetch": "^3.3.2",
"nunjucks": "^3.2.4"
}
}