mirror of
https://github.com/forketyfork/obsidian-youtrack-fetcher.git
synced 2026-07-22 05:46:13 +00:00
The "latest" dist-tag confuses dependabot's advisory matcher, which flags a false-positive CVE-2021-38148 alert (the obsidian < 0.12.12 vuln) for every install. Pinning to a concrete semver range resolves the spec unambiguously and lets dependabot continue to roll the typings forward under the 7-day cooldown.
61 lines
1.9 KiB
JSON
61 lines
1.9 KiB
JSON
{
|
|
"name": "obsidian-youtrack-fetcher",
|
|
"version": "0.12.0",
|
|
"description": "Obsidian plugin to fetch YouTrack issues into notes.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"dev:watch": "node esbuild.config.mjs --watch",
|
|
"prod": "node esbuild.config.mjs --production",
|
|
"typecheck": "tsc -noEmit -skipLibCheck",
|
|
"format": "prettier --write .",
|
|
"test": "jest",
|
|
"test:dev": "pnpm dev && jest",
|
|
"test:watch": "pnpm dev && jest --watch",
|
|
"coverage": "pnpm dev && jest --coverage",
|
|
"lint": "eslint .",
|
|
"lint:css": "stylelint \"src/**/*.css\"",
|
|
"build": "pnpm typecheck && pnpm lint && pnpm lint:css && pnpm format && pnpm prod && pnpm test",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"build:css": "esbuild src/styles.src.css --loader:.css=css --minify --outfile=styles.css",
|
|
"release": "node release.mjs",
|
|
"tag-release": "git tag $(node -p \"require('./package.json').version\") && git push origin --tags"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"youtrack"
|
|
],
|
|
"author": "Forketyfork",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/state": "6.6.0",
|
|
"@codemirror/view": "6.43.0",
|
|
"@eslint/js": "^10.0.1",
|
|
"@eslint/json": "1.2.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/lodash": "^4.17.24",
|
|
"@types/node": "^25.9.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.59.4",
|
|
"@typescript-eslint/parser": "^8.59.4",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^10.4.0",
|
|
"eslint-plugin-no-unsanitized": "^4.1.5",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"globals": "^17.6.0",
|
|
"jest": "^30.4.2",
|
|
"jest-environment-jsdom": "^30.4.1",
|
|
"obsidian": "^1.12.3",
|
|
"prettier": "^3.8.3",
|
|
"stylelint": "^17.11.1",
|
|
"stylelint-config-standard": "^40.0.0",
|
|
"ts-jest": "^29.4.10",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.59.4"
|
|
},
|
|
"packageManager": "pnpm@11.1.2"
|
|
}
|