mirror of
https://github.com/railly/agentfiles.git
synced 2026-07-22 14:30:25 +00:00
- Command ID: remove plugin ID prefix (open-agentfiles -> open)
- Command name: remove plugin name (Open Agentfiles -> Open)
- Settings: use setHeading() instead of createEl("h2"/"h3")
- Replace all require("obsidian") and require("electron") with imports
- Add /* empty */ to all empty catch blocks
- Fix unused variables: lstatSync, nameEl, typeTag
- Remove async from onOpen/onClose (no await needed)
- Use void operator for unhandled promises
- Fix MarkdownRenderer.render to use this.app directly
- Proper cleanup of store event ref in onClose
- Bump to 0.2.1
16 lines
346 B
JSON
16 lines
346 B
JSON
{
|
|
"name": "agentfiles",
|
|
"version": "0.2.1",
|
|
"description": "AI Skills Manager for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"esbuild": "^0.25.0",
|
|
"obsidian": "latest",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|