takitsuba_obsidian-auto-bullet/package.json
Hiroo Takizawa 585c50b528 feat: rename plugin to "Obsidian Auto Bullet" and update description to reflect functionality in Japanese
feat: implement auto bullet insertion feature when typing space or tab at the beginning of a line
feat: add toggle functionality to enable/disable auto bullet feature via ribbon icon and status bar
refactor: clean up code by removing unused sample modal and commands
fix: update settings tab to reflect new plugin name and functionality
2025-03-13 17:32:17 +09:00

24 lines
787 B
JSON

{
"name": "obsidian-auto-bullet",
"version": "1.0.0",
"description": "行の先頭でスペースやタブを入力すると自動的に箇条書きを挿入するObsidianプラグイン",
"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"
},
"keywords": ["obsidian", "plugin", "bullet", "markdown", "list"],
"author": "",
"license": "MIT",
"devDependencies": {
"@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",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}