mirror of
https://github.com/andrii256/ops_obsidian_smart-day-night-switcher.git
synced 2026-07-22 05:42:31 +00:00
It's not good step, but I can't overpass current restriction without losing 'focus' on inputs in settings. And also it will take too much time for making layout using separate methods for each tag. If this plugin became popular in future, I will rewrite it's layouting logic and even split it for few different files and even add few other small but interesting features. But for now this tradeoff is enough
28 lines
825 B
JSON
28 lines
825 B
JSON
{
|
|
"name": "smart-day-night-switcher",
|
|
"version": "1.0.2",
|
|
"description": "This plugin intelligently determines sunrise and sunset times and automatically switches the color scheme to light or dark mode.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"suncalc": "^1.9.0",
|
|
"ts-debounce": "^4.0.0"
|
|
}
|
|
}
|