joplin-plugin-heading-navigator 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 bwat47
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Joplin Plugin
2
+
3
+ This is your new Joplin plugin. It is suggested that you use this README file to document your plugin.
4
+
5
+ For information on how to build or publish the plugin, please see [GENERATOR_DOC.md](./GENERATOR_DOC.md)
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "joplin-plugin-heading-navigator",
3
+ "version": "0.1.0",
4
+ "scripts": {
5
+ "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
6
+ "prepare": "npm run dist",
7
+ "updateVersion": "webpack --env joplin-plugin-config=updateVersion",
8
+ "update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force",
9
+ "lint": "eslint --ext .ts src/",
10
+ "lint:fix": "eslint --ext .ts src/ --fix",
11
+ "format": "prettier --write \"src/**/*.ts\"",
12
+ "test": "jest --passWithNoTests",
13
+ "test:watch": "jest --watch"
14
+ },
15
+ "license": "MIT",
16
+ "keywords": [
17
+ "joplin-plugin"
18
+ ],
19
+ "files": [
20
+ "publish"
21
+ ],
22
+ "devDependencies": {
23
+ "@eslint/eslintrc": "^3.3.1",
24
+ "@eslint/js": "^9.38.0",
25
+ "@types/jest": "^30.0.0",
26
+ "@types/node": "^24.9.1",
27
+ "@typescript-eslint/eslint-plugin": "^8.46.2",
28
+ "@typescript-eslint/parser": "^8.46.2",
29
+ "@joplin/utils": "^3.5.1",
30
+ "@codemirror/lang-markdown": "6.3.1",
31
+ "chalk": "^4.1.0",
32
+ "copy-webpack-plugin": "^13.0.1",
33
+ "eslint": "^9.38.0",
34
+ "eslint-config-prettier": "^10.1.8",
35
+ "eslint-plugin-prettier": "^5.5.4",
36
+ "fs-extra": "^10.1.0",
37
+ "glob": "^8.0.3",
38
+ "jest": "^30.2.0",
39
+ "jest-environment-jsdom": "^30.2.0",
40
+ "prettier": "^3.6.2",
41
+ "tar": "^6.1.11",
42
+ "ts-jest": "^29.4.5",
43
+ "ts-loader": "^9.3.1",
44
+ "typescript": "^5.9.3",
45
+ "webpack": "^5.102.1",
46
+ "webpack-cli": "^6.0.1"
47
+ }
48
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "manifest_version": 1,
3
+ "id": "com.bwat47.heading-navigator",
4
+ "app_min_version": "3.3",
5
+ "version": "0.1.0",
6
+ "name": "Heading Navigator",
7
+ "description": "Overlay panel to navigate through headings in the markdown editor using the keyboard",
8
+ "author": "bwat47",
9
+ "homepage_url": "https://github.com/bwat47/joplin-heading-navigator",
10
+ "repository_url": "https://github.com/bwat47/joplin-heading-navigator",
11
+ "keywords": [
12
+ "joplin-plugin",
13
+ "Heading",
14
+ "Outline",
15
+ "Keyboard",
16
+ "Navigation"
17
+ ],
18
+ "categories": [
19
+ "productivity",
20
+ "editor"
21
+ ],
22
+ "screenshots": [
23
+ {
24
+ "src": "images/screenshot1.png",
25
+ "label": "Heading Navigator screenshot 1"
26
+ },
27
+ {
28
+ "src": "images/screenshot2.png",
29
+ "label": "Heading Navigator screenshot 2"
30
+ }
31
+ ],
32
+ "icons": {
33
+ "16": "images/16.png",
34
+ "24": "images/24.png",
35
+ "32": "images/32.png",
36
+ "48": "images/48.png",
37
+ "64": "images/64.png",
38
+ "128": "images/128.png"
39
+ },
40
+ "promo_tile": {
41
+ "src": "images/heading-navigator_promo_tile.png",
42
+ "label": "heading Navigator Promo Tile"
43
+ },
44
+ "content_scripts": [
45
+ {
46
+ "id": "headingNavigatorPanel",
47
+ "path": "./contentScripts/headingNavigator.js",
48
+ "type": "codeMirrorPlugin"
49
+ }
50
+ ],
51
+ "_publish_hash": "sha256:8c94febd6fabaef37e8877be9408acac837b4d830025523f36099712edc62ac1",
52
+ "_publish_commit": "main:f37bdf48b3ac182a8cc550002b1c70a6be19f256"
53
+ }
@@ -0,0 +1 @@
1
+ /*! For license information please see index.js.LICENSE.txt */