@seatmap.pro/renderer 1.70.2 → 1.71.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seatmap.pro/renderer",
3
- "version": "1.70.2",
3
+ "version": "1.71.1",
4
4
  "description": "Seatmap renderer library for booking and admin interfaces by Seatmap.pro",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -41,7 +41,6 @@
41
41
  },
42
42
  "scripts": {
43
43
  "start": "vite",
44
- "build:vite": "vite build",
45
44
  "update-version": "node scripts/update-version.js",
46
45
  "prebuild": "yarn update-version",
47
46
  "build:playground": "rimraf dist-playground && vite build --config vite.config.playground.js && node scripts/obfuscate-playground.js",
@@ -53,6 +52,7 @@
53
52
  "type-check": "tsc --noEmit",
54
53
  "docs": "rimraf docs && typedoc",
55
54
  "build-lib": "yarn update-version && tsup",
55
+ "trace": "node scripts/trace-sourcemap.js",
56
56
  "test": "vitest run",
57
57
  "test:watch": "vitest",
58
58
  "test:coverage": "vitest run --coverage",
@@ -62,6 +62,7 @@
62
62
  "lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix"
63
63
  },
64
64
  "devDependencies": {
65
+ "@ampproject/remapping": "^2.3.0",
65
66
  "@babel/core": "^7.27.1",
66
67
  "@babel/plugin-proposal-export-default-from": "^7.27.1",
67
68
  "@babel/plugin-transform-class-properties": "^7.27.1",
@@ -77,6 +78,7 @@
77
78
  "@emotion/react": "^11.14.0",
78
79
  "@emotion/styled": "^11.14.0",
79
80
  "@eslint/js": "^9",
81
+ "@jridgewell/trace-mapping": "^0.3.31",
80
82
  "@playwright/test": "^1.58.2",
81
83
  "@rjsf/core": "^6.1.2",
82
84
  "@rjsf/utils": "^6.1.2",
@@ -121,7 +123,6 @@
121
123
  "typedoc-plugin-markdown": "^4.6.3",
122
124
  "typescript": "~5.9.3",
123
125
  "vite": "^7.3.6",
124
- "vite-plugin-dts": "^4.5.4",
125
126
  "vite-plugin-glsl": "^1.5.5",
126
127
  "vitest": "^4.1.10",
127
128
  "vitest-canvas-mock": "^1.1.3",
@@ -150,13 +151,12 @@
150
151
  "tsup/rollup": "4.59.0"
151
152
  },
152
153
  "browserslist": [
153
- "last 2 Chrome versions",
154
- "last 2 Firefox versions",
155
- "last 2 Safari versions",
156
- "last 2 Edge versions",
157
- "ios_saf >= 12",
158
- ">1%",
159
- "not dead",
160
- "not ie 11"
154
+ "chrome >= 90",
155
+ "edge >= 90",
156
+ "firefox >= 90",
157
+ "safari >= 15",
158
+ "ios_saf >= 15",
159
+ "samsung >= 15",
160
+ "not dead"
161
161
  ]
162
162
  }