✨ MAJOR FEATURES: • Auto-zoom intelligence với smart bounds fitting • Enhanced 3D GPS markers với pulsing effects • Professional route display với 6-layer rendering • Status-based parking icons với availability indicators • Production-ready build optimizations 🗺️ AUTO-ZOOM FEATURES: • Smart bounds fitting cho GPS + selected parking • Adaptive padding (50px) cho visual balance • Max zoom control (level 16) để tránh quá gần • Dynamic centering khi không có selection 🎨 ENHANCED VISUALS: • 3D GPS marker với multi-layer pulse effects • Advanced parking icons với status colors • Selection highlighting với animation • Dimming system cho non-selected items 🛣️ ROUTE SYSTEM: • OpenRouteService API integration • Multi-layer route rendering (glow, shadow, main, animated) • Real-time distance & duration calculation • Visual route info trong popup 📱 PRODUCTION READY: • SSR safe với dynamic imports • Build errors resolved • Global deployment via Vercel • Optimized performance 🌍 DEPLOYMENT: • Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app • Bundle size: 22.8 kB optimized • Global CDN distribution • HTTPS enabled 💾 VERSION CONTROL: • MapView-v2.0.tsx backup created • MAPVIEW_VERSIONS.md documentation • Full version history tracking
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "redis",
|
|
"description": "A modern, high performance Redis client",
|
|
"version": "4.7.1",
|
|
"license": "MIT",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"workspaces": [
|
|
"./packages/*"
|
|
],
|
|
"scripts": {
|
|
"test": "npm run test -ws --if-present",
|
|
"build:client": "npm run build -w ./packages/client",
|
|
"build:test-utils": "npm run build -w ./packages/test-utils",
|
|
"build:tests-tools": "npm run build:client && npm run build:test-utils",
|
|
"build:modules": "find ./packages -mindepth 1 -maxdepth 1 -type d ! -name 'client' ! -name 'test-utils' -exec npm run build -w {} \\;",
|
|
"build": "tsc",
|
|
"build-all": "npm run build:client && npm run build:test-utils && npm run build:modules && npm run build",
|
|
"documentation": "npm run documentation -ws --if-present",
|
|
"gh-pages": "gh-pages -d ./documentation -e ./documentation -u 'documentation-bot <documentation@bot>'"
|
|
},
|
|
"dependencies": {
|
|
"@redis/bloom": "1.2.0",
|
|
"@redis/client": "1.6.1",
|
|
"@redis/graph": "1.1.1",
|
|
"@redis/json": "1.0.7",
|
|
"@redis/search": "1.2.0",
|
|
"@redis/time-series": "1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node14": "^14.1.0",
|
|
"gh-pages": "^6.0.0",
|
|
"release-it": "^16.1.5",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/redis/node-redis.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/redis/node-redis/issues"
|
|
},
|
|
"homepage": "https://github.com/redis/node-redis",
|
|
"keywords": [
|
|
"redis"
|
|
]
|
|
}
|