mirror of
https://github.com/flyingnobita/obsidian-github-stars.git
synced 2026-07-22 05:42:52 +00:00
Fix startup active-view warnings and keep automatic embedded-star updates scoped to their source notes.
40 lines
994 B
JSON
40 lines
994 B
JSON
{
|
|
"name": "obsidian-github-stars",
|
|
"version": "1.5.2",
|
|
"description": "Obsidian plugin that displays the number of stars for GitHub repositories mentioned in notes",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "vitest run",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"lint": "eslint ."
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"github",
|
|
"stars"
|
|
],
|
|
"author": "Flying Nobita",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "9.30.1",
|
|
"@codemirror/state": "6.5.0",
|
|
"@codemirror/view": "6.38.6",
|
|
"@types/node": "^20.19.37",
|
|
"esbuild": "0.25.5",
|
|
"eslint": "9.30.1",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "14.0.0",
|
|
"jiti": "2.6.1",
|
|
"tslib": "2.4.0",
|
|
"typescript": "5.8.3",
|
|
"typescript-eslint": "8.35.1",
|
|
"vitest": "^1.6.1"
|
|
},
|
|
"dependencies": {
|
|
"obsidian": "latest"
|
|
}
|
|
}
|