jacobinwwey_obsidian-NotEMD/package.json

46 lines
1.5 KiB
JSON

{
"name": "notemd",
"version": "1.8.0",
"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",
"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",
"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"
}
}