summaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <tom@vanderlee.io>2026-04-03 15:17:13 +0200
committerGravatar Tom van der Lee <tom@vanderlee.io>2026-04-03 15:17:13 +0200
commit1e704530cea02cc5b1b5a9049da432f232f0276f (patch)
tree749d19dd3ee0a7777cf28393ec38dbd1c9cb481e /package.json
parent06ec1f69e11fc52c0e2c6b5f12c3c89b9ef18436 (diff)
downloadclient-1e704530cea02cc5b1b5a9049da432f232f0276f.tar.gz
client-1e704530cea02cc5b1b5a9049da432f232f0276f.tar.bz2
client-1e704530cea02cc5b1b5a9049da432f232f0276f.zip
Upgraded librariesv2.3.0
Python: - Migrate to uv for dependency management; consolidate setup.cfg and requirements files into pyproject.toml (PEP 621) - Upgrade websockets 10 → 16; update import to ClientConnection and remove deprecated WebSocketClientProtocol - Fix PubSub.history classmethod/property combo removed in Python 3.13 - Set requires-python = ">=3.10" (minimum for match statement) JavaScript: - Upgrade React 18 → 19, Vite 5 → 8, TypeScript 5 → 6 and all other frontend dependencies to latest - Replace ReactDOM.render with createRoot (removed in React 18) - Swap react-json-view for @microlink/react-json-view (React 19 support) CI: - Switch GitHub Actions build to uv and --frozen-lockfile yarn install
Diffstat (limited to 'package.json')
-rw-r--r--package.json26
1 files changed, 13 insertions, 13 deletions
diff --git a/package.json b/package.json
index 948e21f..f46b714 100644
--- a/package.json
+++ b/package.json
@@ -10,22 +10,22 @@
10 }, 10 },
11 "license": "MIT", 11 "license": "MIT",
12 "dependencies": { 12 "dependencies": {
13 "bootstrap": "^5.3.3", 13 "@microlink/react-json-view": "^1.31.15",
14 "bootstrap-icons": "^1.11.3", 14 "bootstrap": "^5.3.8",
15 "bootstrap-icons": "^1.13.1",
15 "classnames": "^2.5.1", 16 "classnames": "^2.5.1",
16 "dayjs": "^1.11.13", 17 "dayjs": "^1.11.20",
17 "react": "^18.3.1", 18 "react": "^19.2.4",
18 "react-bootstrap": "^2.10.4", 19 "react-bootstrap": "^2.10.10",
19 "react-dom": "^18.3.1", 20 "react-dom": "^19.2.4"
20 "react-json-view": "^1.21.3"
21 }, 21 },
22 "devDependencies": { 22 "devDependencies": {
23 "@types/react": "^18.3.5", 23 "@types/react": "^19.2.14",
24 "@types/react-dom": "^18.3.0", 24 "@types/react-dom": "^19.2.3",
25 "@vitejs/plugin-react": "^4.3.1", 25 "@vitejs/plugin-react": "^6.0.1",
26 "babel-preset-nano-react-app": "^0.1.0", 26 "babel-preset-nano-react-app": "^0.1.0",
27 "sass": "^1.78.0", 27 "sass": "^1.99.0",
28 "typescript": "^5.5.4", 28 "typescript": "^6.0.2",
29 "vite": "^5.4.3" 29 "vite": "^8.0.3"
30 } 30 }
31} 31}