mirror of
https://github.com/uthvah/sync-embeds.git
synced 2026-07-22 06:43:40 +00:00
- 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>
25 lines
534 B
JSON
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"
|
|
}
|
|
}
|