Add mise.toml and pin Node LTS

- mise.toml with node = "24.15.0" (current LTS)
- package.json: packageManager = "npm@11.12.1", engines.node >= 24.15.0
This commit is contained in:
Bruno Miiller 2026-05-19 22:10:31 -03:00
parent 34db181af0
commit 9dde1bcdc8
2 changed files with 6 additions and 0 deletions

2
mise.toml Normal file
View File

@ -0,0 +1,2 @@
[tools]
node = "24.15.0"

View File

@ -2,6 +2,10 @@
"name": "remotely-save", "name": "remotely-save",
"version": "0.5.25", "version": "0.5.25",
"description": "This is yet another sync plugin for Obsidian app.", "description": "This is yet another sync plugin for Obsidian app.",
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=24.15.0"
},
"scripts": { "scripts": {
"dev2": "node esbuild.config.mjs --watch", "dev2": "node esbuild.config.mjs --watch",
"build2": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", "build2": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",