jacobinwwey_obsidian-NotEMD/package.json
2025-07-12 16:08:48 +08:00

31 lines
1.1 KiB
JSON

{
"name": "notemd",
"version": "1.3.2",
"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"
},
"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.17.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"obsidian": "latest",
"ts-jest": "^29.3.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}