joplin-plugin-filterable-notebook-tree-view 0.0.1
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/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Joplin Plugin Filterable Notebook TreeView
|
|
2
|
+
|
|
3
|
+
> [!CAUTION]
|
|
4
|
+
> This plugin is currently under development.
|
|
5
|
+
> Use at your own risk.
|
|
6
|
+
|
|
7
|
+
Filterable Notebook TreeView adds a panel to Joplin. In this panel, you can filter notebooks by text.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# Motivation
|
|
11
|
+
|
|
12
|
+
As a heavy Joplin user, I ended up with too many notebooks.
|
|
13
|
+
I wanted to filter them while keeping the tree structure intact.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# Installation
|
|
17
|
+
|
|
18
|
+
TODO: 書く
|
|
19
|
+
|
|
20
|
+
# Usage
|
|
21
|
+
|
|
22
|
+
TODO: 書く
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "joplin-plugin-filterable-notebook-tree-view",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"dev": "concurrently -k \"npm:dev:plugin\" \"npm:dev:webview\"",
|
|
6
|
+
"dev:webview": "vite",
|
|
7
|
+
"dev:plugin": "concurrently -k \"cross-env NODE_ENV=development webpack --watch --env joplin-plugin-config=buildMain\" \"cross-env NODE_ENV=development webpack --watch --env joplin-plugin-config=buildExtraScripts\"",
|
|
8
|
+
"build": "npm run build:plugin && npm run build:webview",
|
|
9
|
+
"build:webview": "vue-tsc --noEmit && vite build",
|
|
10
|
+
"build:plugin": "cross-env NODE_ENV=production webpack --env joplin-plugin-config=buildMain",
|
|
11
|
+
"packaging": "cross-env NODE_ENV=production webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && npm run build:webview && webpack --env joplin-plugin-config=createArchive",
|
|
12
|
+
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
|
|
13
|
+
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"joplin-plugin"
|
|
18
|
+
],
|
|
19
|
+
"files": [
|
|
20
|
+
"publish"
|
|
21
|
+
],
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@iconify-json/mdi": "^1.2.3",
|
|
24
|
+
"@types/node": "^18.7.13",
|
|
25
|
+
"@unocss/preset-icons": "^66.6.0",
|
|
26
|
+
"@unocss/preset-wind4": "^66.6.0",
|
|
27
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
28
|
+
"chalk": "^4.1.0",
|
|
29
|
+
"concurrently": "^9.2.1",
|
|
30
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
31
|
+
"cross-env": "^10.1.0",
|
|
32
|
+
"fs-extra": "^10.1.0",
|
|
33
|
+
"glob": "^8.0.3",
|
|
34
|
+
"raw-loader": "^4.0.2",
|
|
35
|
+
"tar": "^6.1.11",
|
|
36
|
+
"ts-loader": "^9.3.1",
|
|
37
|
+
"typescript": "^5.0.0",
|
|
38
|
+
"unocss": "^66.6.0",
|
|
39
|
+
"vite": "^5.0.0",
|
|
40
|
+
"vue-tsc": "^3.0.0",
|
|
41
|
+
"webpack": "^5.74.0",
|
|
42
|
+
"webpack-cli": "^4.10.0"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@vueuse/core": "^14.2.1",
|
|
46
|
+
"vue": "^3.5.28"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": 1,
|
|
3
|
+
"id": "com.wakakusa.filterable-notebook-tree-view",
|
|
4
|
+
"name": "Filterable Notebook TreeView",
|
|
5
|
+
"version": "0.0.1",
|
|
6
|
+
"app_min_version": "3.5",
|
|
7
|
+
"platforms": [
|
|
8
|
+
"desktop"
|
|
9
|
+
],
|
|
10
|
+
"description": "",
|
|
11
|
+
"author": "Wakakusa Ryuuzi",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"notebook",
|
|
14
|
+
"filter"
|
|
15
|
+
],
|
|
16
|
+
"categories": [
|
|
17
|
+
"appearance",
|
|
18
|
+
"search",
|
|
19
|
+
"personal knowledge management"
|
|
20
|
+
],
|
|
21
|
+
"_publish_hash": "sha256:ade37213d2c4018c4f076549d020b3ac903f91fdcfcc50a052b8446f509b072d",
|
|
22
|
+
"_publish_commit": "main:6148cabd8645b50e470aed352aac605d0e22efa4"
|
|
23
|
+
}
|