mirror of
https://github.com/ckelsoe/obsidian-shell-path-copy.git
synced 2026-07-22 13:10:27 +00:00
Add a Show in ribbon toggle per custom format that registers a left-ribbon icon copying that format from the active note. Off by default; icons register in format-list order. Add a Browse all icons button to the format icon picker, opening a searchable virtualized grid of every Obsidian icon (getIconIds) so a format can use any icon. Pure filter/window helpers are unit tested.
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "shell-path-copy",
|
|
"version": "2.5.0",
|
|
"description": "Copy file and folder paths with shell-friendly formatting for Linux and Windows",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"lint": "eslint . --max-warnings 0 && node scripts/check-submission.mjs",
|
|
"test": "jest",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "Charles Kelsoe (ckelsoe)",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.0.7",
|
|
"@typescript-eslint/eslint-plugin": "^8.35.0",
|
|
"@typescript-eslint/parser": "^8.35.0",
|
|
"esbuild": "^0.25.5",
|
|
"eslint": "^9.39.2",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"globals": "^17.1.0",
|
|
"jest": "^30.2.0",
|
|
"obsidian": "latest",
|
|
"ts-jest": "^29.4.6",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"overrides": {
|
|
"handlebars": "^4.7.9",
|
|
"picomatch": "^2.3.2",
|
|
"flatted": "^3.4.0",
|
|
"ajv": "^6.14.0",
|
|
"brace-expansion@1": "^1.1.13",
|
|
"brace-expansion@2": "^2.0.3"
|
|
}
|
|
}
|