mirror of
https://github.com/eoinhurrell/obsidian-inboxer.git
synced 2026-07-22 12:40:28 +00:00
- 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
29 lines
727 B
JSON
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"
|
|
}
|
|
}
|