jacobinwwey_obsidian-NotEMD/package.json

54 lines
1.8 KiB
JSON
Raw Normal View History

2025-04-17 15:31:56 +00:00
{
2025-07-12 07:35:48 +00:00
"name": "notemd",
"version": "1.8.3",
2025-07-12 07:35:48 +00:00
"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.",
2025-04-17 15:31:56 +00:00
"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",
2025-04-17 15:31:56 +00:00
"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"
2025-04-17 15:31:56 +00:00
},
"keywords": [
"obsidian",
"plugin",
"llm",
"notes",
"wiki-links",
"research",
"translation"
],
2025-07-12 07:35:48 +00:00
"author": "jacob",
2025-04-17 15:31:56 +00:00
"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",
2025-04-17 15:31:56 +00:00
"jest": "^29.7.0",
"lodash": "^4.17.21",
"obsidian": "latest",
"ts-jest": "^29.3.2",
"tslib": "2.4.0",
2025-12-26 07:30:07 +00:00
"typescript": "^5.9.3"
},
"dependencies": {
2026-04-14 09:41:22 +00:00
"mermaid": "^11.12.2",
"vega": "^6.2.0",
"vega-lite": "^6.4.2"
2025-04-17 15:31:56 +00:00
}
}