mirror of
https://github.com/nossimonov/obsidian-chartdown.git
synced 2026-07-22 08:38:09 +00:00
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>
16 lines
522 B
JSON
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"
|
|
}
|
|
}
|