generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"id": "markdown-export", | ||
"id": "obsidian-markdown-export-plugin", | ||
"name": "markdown export", | ||
"version": "1.0.17", | ||
"minAppVersion": "0.15.0", | ||
"description": "This is a markdown export plugin for Obsidian.", | ||
"author": "bingryan", | ||
"authorUrl": "https://github.com/bingryan/obsidian-markdown-export-plugin", | ||
"isDesktopOnly": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
{ | ||
"name": "markdown-export", | ||
"version": "1.0.1", | ||
"description": "This plugin allows to markdown to a folder.", | ||
"main": "main.js", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx", | ||
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", | ||
"release": "auto shipit", | ||
"version": "node version-bump.mjs && git add manifest.json versions.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/bingryan/obsidian-markdown-export-plugin.git" | ||
}, | ||
"keywords": [ | ||
"obsidian" | ||
], | ||
"author": "bingryan", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/md5": "^2.3.2", | ||
"@types/node": "^16.11.6", | ||
"@typescript-eslint/eslint-plugin": "^5.47.0", | ||
"@typescript-eslint/parser": "^5.47.0", | ||
"auto": "^10.37.6", | ||
"auto-plugin-obsidian": "^0.1.4", | ||
"builtin-modules": "3.3.0", | ||
"esbuild": "0.14.47", | ||
"eslint": "^8.30.0", | ||
"obsidian": "latest", | ||
"tslib": "2.4.0", | ||
"typescript": "4.7.4" | ||
}, | ||
"dependencies": { | ||
"md5": "^2.3.0" | ||
} | ||
"name": "obsidian-markdown-export", | ||
"version": "1.0.1", | ||
"description": "This plugin allows to markdown to a folder.", | ||
"main": "main.js", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx", | ||
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", | ||
"release": "auto shipit", | ||
"version": "node version-bump.mjs && git add manifest.json versions.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/bingryan/obsidian-markdown-export-plugin.git" | ||
}, | ||
"keywords": [ | ||
"obsidian" | ||
], | ||
"author": "bingryan", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/md5": "^2.3.2", | ||
"@types/node": "^16.11.6", | ||
"@typescript-eslint/eslint-plugin": "^5.47.0", | ||
"@typescript-eslint/parser": "^5.47.0", | ||
"auto": "^10.37.6", | ||
"auto-plugin-obsidian": "^0.1.4", | ||
"builtin-modules": "3.3.0", | ||
"esbuild": "0.14.47", | ||
"eslint": "^8.30.0", | ||
"obsidian": "latest", | ||
"tslib": "2.4.0", | ||
"typescript": "4.7.4" | ||
}, | ||
"dependencies": { | ||
"md5": "^2.3.0" | ||
} | ||
} |