mirror of
https://github.com/deck6/obsidian-galaxy-graph.git
synced 2026-07-22 08:30:11 +00:00
* feat: add English and Korean localization Default the plugin UI to English and select Korean for ko locales across graph controls, commands, notices, and settings. Add focused locale and dynamic-count tests. * chore: prepare 0.1.4 release
31 lines
750 B
JSON
31 lines
750 B
JSON
{
|
|
"name": "obsidian-galaxy-graph",
|
|
"version": "0.1.4",
|
|
"description": "An immersive, translucent 3D galaxy graph for Obsidian.",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc --noEmit && node esbuild.config.mjs production",
|
|
"check": "tsc --noEmit",
|
|
"test": "node --experimental-strip-types --test tests/*.test.mjs"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"graph-view",
|
|
"threejs",
|
|
"3d"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.0",
|
|
"@types/three": "^0.185.1",
|
|
"esbuild": "^0.28.1",
|
|
"obsidian": "^1.13.1",
|
|
"typescript": "^7.0.2"
|
|
},
|
|
"dependencies": {
|
|
"3d-force-graph": "^1.80.0",
|
|
"three": "^0.185.1"
|
|
}
|
|
}
|