mirror of
https://github.com/yashmurty/obsidian-people-graph.git
synced 2026-07-22 06:08:45 +00:00
- Bump minAppVersion to 1.7.2 (covers addAction/revealLeaf) + add versions.json - Obsidian API hygiene: createEl/createDiv, typed d3 callbacks, drop builtin-modules - Add release workflow with GitHub artifact attestation - Remove node-count gate and all Pro/Locked/Upgrade wording - Bump version to 0.1.2
24 lines
565 B
JSON
24 lines
565 B
JSON
{
|
|
"name": "obsidian-people-graph",
|
|
"version": "0.1.2",
|
|
"description": "A visual force-directed graph of people and friends in your vault",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
|
|
},
|
|
"keywords": [],
|
|
"author": "yashmurty",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/d3": "^7.4.3",
|
|
"@types/node": "^22.0.0",
|
|
"esbuild": "^0.24.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.7.2"
|
|
},
|
|
"dependencies": {
|
|
"d3": "^7.9.0"
|
|
}
|
|
}
|