Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ec688b994 | ||
|
|
990ed9dcec | ||
|
|
2684c0f27e | ||
|
|
28b17d4f08 |
12
package-lock.json
generated
12
package-lock.json
generated
@@ -1,16 +1,16 @@
|
||||
{
|
||||
"name": "takerofnotes-plugin-filesystem",
|
||||
"version": "1.4.0",
|
||||
"version": "1.6.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "takerofnotes-plugin-filesystem",
|
||||
"version": "1.4.0",
|
||||
"version": "1.6.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"gray-matter": "^4.0.3",
|
||||
"takerofnotes-plugin-sdk": "^0.3.0"
|
||||
"takerofnotes-plugin-sdk": "^0.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-commonjs": "^29.0.0",
|
||||
@@ -795,9 +795,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/takerofnotes-plugin-sdk": {
|
||||
"version": "0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/takerofnotes-plugin-sdk/-/takerofnotes-plugin-sdk-0.3.0.tgz",
|
||||
"integrity": "sha512-GG9XFD7NXqXPyhoYCA3j8yg7aGE9dulGjkb4yp1TmO+cT7/o5BTCBo8c0hP80FVkC8x+bcHlbQNvD320045Q7g==",
|
||||
"version": "0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/takerofnotes-plugin-sdk/-/takerofnotes-plugin-sdk-0.4.0.tgz",
|
||||
"integrity": "sha512-C1bXun19Zh603Aq/7sEI4c3dZ8QEUiz51ikDPJm5g+JWoQkH77OH6AY19SN+eOKnqEmY1yw3JYEVd//mJ06UAA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"zod": "^4.3.6"
|
||||
|
||||
@@ -1,15 +1,13 @@
|
||||
{
|
||||
"name": "takerofnotes-plugin-filesystem",
|
||||
"version": "1.4.0",
|
||||
"version": "1.6.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/nicwands/takerofnotes-plugin-filesystem.git"
|
||||
},
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"exports": {
|
||||
".": "./dist/index.js"
|
||||
},
|
||||
"exports": "./dist/index.js",
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"prepublishOnly": "npm run build"
|
||||
@@ -19,7 +17,7 @@
|
||||
"description": "Filesystem storage plugin for Taker of Notes",
|
||||
"dependencies": {
|
||||
"gray-matter": "^4.0.3",
|
||||
"takerofnotes-plugin-sdk": "^0.3.0"
|
||||
"takerofnotes-plugin-sdk": "^0.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-commonjs": "^29.0.0",
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// rollup.config.js
|
||||
import resolve from '@rollup/plugin-node-resolve'
|
||||
import commonjs from '@rollup/plugin-commonjs'
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@ export default definePlugin({
|
||||
id: 'filesystem',
|
||||
name: 'Filesystem',
|
||||
description: 'Store notes as markdown files on your local filesystem',
|
||||
version: '1.0.0',
|
||||
apiVersion: '0.3.0',
|
||||
version: '1.6.0',
|
||||
apiVersion: '0.4.0',
|
||||
configSchema: [
|
||||
{
|
||||
key: 'notesDir',
|
||||
|
||||
Reference in New Issue
Block a user