85d20b896a
- Correct plugin ID in manifest.json to match folder name (obsidian-unicode-formatter) - Update package.json name and description from sample template defaults - Make markdownToLinkedIn handle both '- ' and '* ' list markers - Enhance cleanText to also strip em-dash, arrow, and numbered-list prefixes
30 lines
800 B
JSON
30 lines
800 B
JSON
{
|
|
"name": "obsidian-unicode-formatter",
|
|
"version": "1.0.0",
|
|
"description": "Format selected text as Unicode Sans-Serif Bold, Italic, or Bold-Italic for LinkedIn and Facebook posts.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"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",
|
|
"lint": "eslint ."
|
|
},
|
|
"keywords": [],
|
|
"license": "0-BSD",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"esbuild": "0.25.5",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "14.0.0",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "8.35.1",
|
|
"@eslint/js": "9.30.1",
|
|
"jiti": "2.6.1"
|
|
},
|
|
"dependencies": {
|
|
"obsidian": "latest"
|
|
}
|
|
}
|