uthvah_sync-embeds/package.json
Verity 675ca16fa9 fix: resolve Obsidian scorecard warnings and readable-line-width padding bug
- Replace deprecated builtin-modules with node:module built-in
- Pin monkey-around to exact version 3.0.0
- Upgrade esbuild 0.17.3 → 0.28.1 (fixes high-severity CVE)
- Commit package-lock.json for reproducible builds
- Add CONTRIBUTING.md and GitHub Actions release workflow with artifact attestation
- Fix #ccc shorthand hex in print styles
- Neutralize Obsidian's readable-line-width per-line margin-inline inside sync embeds

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 16:32:22 +01:00

25 lines
534 B
JSON

{
"name": "obsidian-sync-embeds",
"version": "2.0.0",
"description": "Create fully editable, live-synced note embeds",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "NODE_ENV=production node esbuild.config.mjs"
},
"keywords": [
"obsidian",
"plugin",
"embeds"
],
"author": "uthvah",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"esbuild": "^0.28.1",
"obsidian": "latest"
},
"dependencies": {
"monkey-around": "3.0.0"
}
}