eoinhurrell_obsidian-inboxer/package.json
Eoin H 70efb26899 fix: resolve plugin review issues for lint, manifest, and release
- Prefix unused `view` parameters with underscore in editor callbacks
- Add trailing period to manifest.json description
- Replace `builtin-modules` package with Node built-in
`module.builtinModules`
- Remove zip file from release workflow assets
2026-05-19 00:23:29 +01:00

29 lines
727 B
JSON

{
"name": "inboxer",
"version": "1.5.6",
"description": "An Obsidian plugin to add entries to INBOX and TIMELINE sections",
"main": "main.js",
"scripts": {
"test": "bun test",
"dev": "bun esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && bun esbuild.config.mjs production",
"version": "bun version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"plugin"
],
"author": "Eoin Hurrell",
"devDependencies": {
"@types/bun": "1.2.9",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"esbuild": "0.25.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@types/jest": "29.5.14"
}
}