nossimonov_obsidian-chartdown/package.json
Nossimonov d44993394b Lockfile + standalone build: reproducible from the published packages
The store recommends a lockfile for reproducible builds; the repo now
carries package-lock.json and a build script that produces main.js from
the synced source against the published @chartdown packages - verified
locally (the 0.2.0 npm packages fully power the plugin).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-21 17:40:53 -07:00

16 lines
522 B
JSON

{
"name": "obsidian-chartdown",
"private": true,
"description": "Obsidian plugin: render Chartdown map blocks as SVG in your notes. Built from the Chartdown monorepo; see README.",
"license": "MIT",
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=browser --format=cjs --external:obsidian --outfile=main.js"
},
"devDependencies": {
"esbuild": "^0.28.1",
"@chartdown/core": "^0.2.0",
"@chartdown/render-svg": "^0.2.0",
"obsidian": "^1.13.1",
"typescript": "^5.6.0"
}
}