mirror of
https://github.com/jsmorabito/obsidian-text-formatting-toolbar.git
synced 2026-07-22 07:48:21 +00:00
Re-applies the changes held back on wikilink-and-settings-api after confirming the "attestation failed" review result was caused by an upstream bug in Obsidian's community review backend (it doesn't yet handle a GitHub REST API breaking change to attestation responses), not by anything in this repo or release. Combines that restored code with the manifest.json attestation fix already on main.
32 lines
767 B
JSON
32 lines
767 B
JSON
{
|
|
"name": "text-toolbar",
|
|
"version": "0.2.4",
|
|
"description": "A floating formatting toolbar for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"lint": "eslint .",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [],
|
|
"author": "John Morabito",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^22.20.1",
|
|
"esbuild": "^0.28.1",
|
|
"esbuild-sass-plugin": "^3.3.1",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.4.1",
|
|
"globals": "^17.6.0",
|
|
"jiti": "^2.7.0",
|
|
"obsidian": "latest",
|
|
"typescript": "^5.0.0",
|
|
"typescript-eslint": "^8.61.0",
|
|
"vitest": "^4.1.9"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "^2.8.1"
|
|
}
|
|
}
|