@rebuy/rebuy 2.35.0 → 2.35.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +13 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rebuy/rebuy",
3
3
  "description": "This is the default library for Rebuy",
4
- "version": "2.35.0",
4
+ "version": "2.35.1",
5
5
  "license": "MIT",
6
6
  "author": "Rebuy, Inc.",
7
7
  "type": "module",
@@ -89,13 +89,16 @@
89
89
  "build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly --outDir dist && tsc-alias --project tsconfig.build.json",
90
90
  "build:watch": "npm run clean && npm run build:types && node esbuild.config.mjs --watch",
91
91
  "check-types": "tsc --noEmit",
92
+ "check:node": "node scripts/assert-node-supported.mjs",
92
93
  "clean": "rm -rf dist",
93
94
  "deploy": "npm run build && npx semantic-release --debug --no-ci",
94
95
  "deploy:dryrun": "npm run deploy -- --dry-run",
95
96
  "dev": "npm run clean && concurrently \"npm run types:watch\" \"npm run build:watch\"",
96
97
  "format": "npm run lint -- --fix",
97
- "lint": "eslint --ext .js,.jsx,.json,.mjs,.ts,.tsx ./src",
98
+ "lint": "eslint --ext .js,.jsx,.json,.mjs,.ts,.tsx ./src ./scripts esbuild.config.mjs",
98
99
  "lint:skip-warn": "npm run lint -- --quiet",
100
+ "lock": "npx --yes npm@10.9.8 install --package-lock-only",
101
+ "lock:verify": "npx --yes npm@10.9.8 ci --dry-run",
99
102
  "prepare": "node -e \"process.env.CI || require('node:child_process').execSync('husky', {stdio: 'inherit'})\"",
100
103
  "sort-package": "sort-package-json",
101
104
  "test": "vitest run",
@@ -145,10 +148,17 @@
145
148
  "lint-staged": "^15.5.0",
146
149
  "prettier": "^3.5.3",
147
150
  "react-hook-form": "^7.69.0",
148
- "semantic-release": "^24.2.5",
151
+ "semantic-release": "^25.0.8",
149
152
  "sort-package-json": "^3.2.1",
150
153
  "tsc-alias": "^1.8.16",
151
154
  "typescript": "^5.8.3",
152
155
  "vitest": "^4.1.8"
156
+ },
157
+ "devEngines": {
158
+ "runtime": {
159
+ "name": "node",
160
+ "onFail": "warn",
161
+ "version": "^22.14.0 || ^24.10.0 || ^26.0.0"
162
+ }
153
163
  }
154
164
  }