sandsaber_mdMenu/package.json

43 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2026-06-08 13:56:24 +00:00
{
2026-06-13 12:58:59 +00:00
"name": "mdmenu",
2026-07-19 21:48:49 +00:00
"version": "1.0.5",
"description": "A mini WYSIWYG-style Markdown formatting toolbar for Obsidian.",
2026-06-08 13:56:24 +00:00
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"lint": "eslint src tests vitest.config.ts",
2026-06-12 12:34:21 +00:00
"typecheck": "tsc -noEmit -skipLibCheck",
"build": "npm run typecheck && node esbuild.config.mjs production",
"build:dist": "npm run typecheck && node scripts/build-dist.mjs",
"audit": "npm audit --omit=dev",
"check": "npm run lint && npm run test && npm run build && npm run build:dist && npm run audit",
2026-06-08 13:56:24 +00:00
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"markdown",
"toolbar"
],
"author": "Michael Makarov",
"license": "MIT",
"repository": {
"type": "git",
2026-06-13 12:58:59 +00:00
"url": "https://github.com/sandsaber/mdMenu.git"
2026-06-08 13:56:24 +00:00
},
"devDependencies": {
2026-07-19 21:35:52 +00:00
"@types/node": "^26.1.1",
2026-06-12 13:13:57 +00:00
"esbuild": "^0.28.1",
2026-07-19 21:35:52 +00:00
"eslint": "^10.7.0",
"eslint-plugin-obsidianmd": "^0.4.1",
"globals": "^17.7.0",
"obsidian": "^1.13.1",
2026-06-08 13:56:24 +00:00
"tslib": "^2.8.1",
2026-06-12 12:34:21 +00:00
"typescript": "^6.0.3",
2026-07-19 21:35:52 +00:00
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
2026-06-08 13:56:24 +00:00
}
}