railly_agentfiles/package.json
Railly 53d469c673 fix: address all obsidian-releases review issues
- 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
2026-03-28 12:40:17 -05:00

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"
}
}