mirror of
https://github.com/kefate/obsidian-explorer-stepper.git
synced 2026-07-22 07:47:56 +00:00
Add natural sibling-file navigation, localized commands and notices, configurable hotkey documentation, and regression tests.
26 lines
639 B
JSON
26 lines
639 B
JSON
{
|
|
"name": "obsidian-explorer-stepper",
|
|
"version": "1.0.0",
|
|
"description": "Navigate to the previous or next file in the current folder.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc --noEmit && node esbuild.config.mjs production",
|
|
"test": "tsx --test tests/*.test.ts"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"navigation"
|
|
],
|
|
"author": "kefate",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/node": "^22.15.17",
|
|
"esbuild": "^0.25.5",
|
|
"obsidian": "latest",
|
|
"tsx": "^4.20.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|