chore(build): min node version is 24.11.1

This commit is contained in:
theborakompanioni 2025-11-16 13:38:38 +01:00
parent f6011108a3
commit 86eec0ddd0
No known key found for this signature in database
GPG key ID: E8070AF0053AAC0D
5 changed files with 17 additions and 2 deletions

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['v22.11.0']
node-version: ['v24.11.1']
steps:
- name: Checkout

2
.npmrc Normal file
View file

@ -0,0 +1,2 @@
git-tag-version = false
engine-strict = true

1
.nvmrc Normal file
View file

@ -0,0 +1 @@
v24.11.1

5
package-lock.json generated
View file

@ -7,6 +7,7 @@
"": {
"name": "jam",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"@joinmarket-webui/joinmarket-api-ts": "0.3.0",
"@noble/hashes": "1.8.0",
@ -67,6 +68,10 @@
"typescript-eslint": "8.46.4",
"vite": "7.2.2",
"vitest": "3.2.4"
},
"engines": {
"node": ">=24.11.1",
"npm": ">=11.6.2"
}
},
"node_modules/@adobe/css-tools": {

View file

@ -1,8 +1,15 @@
{
"name": "jam",
"private": true,
"version": "0.1.0",
"private": true,
"description": "Your sats. Your privacy. Your profit.",
"repository": "git@github.com:joinmarket-webui/jam.git",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24.11.1",
"npm": ">=11.6.2"
},
"scripts": {
"dev": "VITE_JAM_DEV_MODE=true vite",
"dev:secondary": "JAM_BACKEND=jam-standalone JAM_API_PORT=29080 npm run dev",