Skip to content

Commit

Permalink
fix: plugin id
Browse files Browse the repository at this point in the history
  • Loading branch information
bingryan committed Feb 1, 2024
1 parent af3e225 commit c2e54b6
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 39 deletions.
4 changes: 2 additions & 2 deletions manifest.json
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
}
}
74 changes: 37 additions & 37 deletions package.json
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"
}
}

0 comments on commit c2e54b6

Please sign in to comment.