mirror of
https://github.com/jacobinwwey/obsidian-NotEMD.git
synced 2026-07-22 12:40:25 +00:00
Highlights: - First-install Welcome Modal with i18n across all 22 locales - Sponsor support: Give a Star on GitHub + Buy Me a Coffee (ko-fi) - Cline-aligned output token resolution for unknown models - Diagram edge field normalization for LLM JSON output - Hard constraints for MermaidProcessor decomposition and legacy prompt retirement - notebook-navigator cross-reference analysis
53 lines
1.8 KiB
JSON
53 lines
1.8 KiB
JSON
{
|
|
"name": "notemd",
|
|
"version": "1.8.3",
|
|
"description": "Enhances notes using LLMs: 1) Processes text to add [[wiki-links]] and create concept notes. 2) Performs web research (Tavily/DuckDuckGo) and summarizes topics. 3) Generates content from note titles. 4) Translates notes/selections. Supports multiple LLM providers and customizable output.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"docs:dev": "npm exec vitepress@1.6.4 dev docs",
|
|
"docs:build": "npm exec vitepress@1.6.4 build docs",
|
|
"docs:preview": "npm exec vitepress@1.6.4 preview docs/.vitepress/dist",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts",
|
|
"diagnose:llm": "node scripts/diagnose-llm-provider.js",
|
|
"audit:i18n-ui": "node scripts/audit-hardcoded-ui-strings.js",
|
|
"audit:render-host": "node scripts/audit-render-host-bundle.js",
|
|
"release:github": "node scripts/release/publish-github-release.js",
|
|
"regression:language-baseline": "bash scripts/regression/language-support-baseline.sh",
|
|
"regression:language-compare": "bash scripts/regression/language-support-compare.sh"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"llm",
|
|
"notes",
|
|
"wiki-links",
|
|
"research",
|
|
"translation"
|
|
],
|
|
"author": "jacob",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/lodash": "^4.17.16",
|
|
"@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.27.0",
|
|
"jest": "^29.7.0",
|
|
"lodash": "^4.17.21",
|
|
"obsidian": "latest",
|
|
"ts-jest": "^29.3.2",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"mermaid": "^11.12.2",
|
|
"vega": "^6.2.0",
|
|
"vega-lite": "^6.4.2"
|
|
}
|
|
}
|