kefate_obsidian-explorer-st.../package.json
kefate 1e62778cd4 feat: add Explorer Stepper plugin
Add natural sibling-file navigation, localized commands and notices, configurable hotkey documentation, and regression tests.
2026-06-15 17:44:04 +08:00

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"
}
}