generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
2,451 additions
and
2,448 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,11 +1,11 @@ | ||
{ | ||
"id": "etymology-lookup", | ||
"name": "Etymology Lookup", | ||
"version": "1.0.2", | ||
"minAppVersion": "0.15.0", | ||
"description": "Get the etymology of words in your notes", | ||
"author": "Claire Froelich", | ||
"authorUrl": "https://github.com/clairefro", | ||
"fundingUrl": "https://www.buymeacoffee.com/clairefro", | ||
"isDesktopOnly": false | ||
"id": "etymology-lookup", | ||
"name": "Etymology Lookup", | ||
"version": "1.0.3", | ||
"minAppVersion": "0.15.0", | ||
"description": "Get the etymology of words in your notes", | ||
"author": "Claire Froelich", | ||
"authorUrl": "https://github.com/clairefro", | ||
"fundingUrl": "https://www.buymeacoffee.com/clairefro", | ||
"isDesktopOnly": false | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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,27 +1,29 @@ | ||
{ | ||
"name": "obsidian-plugin-etymology-lookup", | ||
"version": "1.0.2", | ||
"description": "Get the etymology of words in your Obsidian notes", | ||
"main": "main.js", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", | ||
"version": "node version-bump.mjs && git add manifest.json versions.json" | ||
}, | ||
"keywords": [], | ||
"author": "Claire Froelich", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^16.11.6", | ||
"@typescript-eslint/eslint-plugin": "5.29.0", | ||
"@typescript-eslint/parser": "5.29.0", | ||
"builtin-modules": "3.3.0", | ||
"esbuild": "0.17.3", | ||
"obsidian": "latest", | ||
"tslib": "2.4.0", | ||
"typescript": "4.7.4" | ||
}, | ||
"dependencies": { | ||
"cheerio": "^1.0.0-rc.12" | ||
} | ||
"name": "obsidian-plugin-etymology-lookup", | ||
"version": "1.0.3", | ||
"description": "Get the etymology of words in your Obsidian notes", | ||
"main": "main.js", | ||
"scripts": { | ||
"dev": "node esbuild.config.mjs", | ||
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", | ||
"version": "node version-bump.mjs && git add manifest.json versions.json", | ||
"export": "npm run build && npm run cp-build", | ||
"cp-build": "cp main.js ~/Desktop/main.js && cp manifest.json ~/Desktop/manifest.json && cp styles.css ~/Desktop/styles.css" | ||
}, | ||
"keywords": [], | ||
"author": "Claire Froelich", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^16.11.6", | ||
"@typescript-eslint/eslint-plugin": "5.29.0", | ||
"@typescript-eslint/parser": "5.29.0", | ||
"builtin-modules": "3.3.0", | ||
"esbuild": "0.17.3", | ||
"obsidian": "latest", | ||
"tslib": "2.4.0", | ||
"typescript": "4.7.4" | ||
}, | ||
"dependencies": { | ||
"cheerio": "^1.0.0-rc.12" | ||
} | ||
} |
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,5 +1,6 @@ | ||
{ | ||
"1.0.0": "0.15.0", | ||
"1.0.1": "0.15.0", | ||
"1.0.2": "0.15.0" | ||
"1.0.0": "0.15.0", | ||
"1.0.1": "0.15.0", | ||
"1.0.2": "0.15.0", | ||
"1.0.3": "0.15.0" | ||
} |