✨ 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
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "array-timsort",
|
|
"version": "1.0.3",
|
|
"description": "Fast JavaScript array sorting by implementing Python's Timsort algorithm",
|
|
"homepage": "https://github.com/kaelzhang/node-array-timsort",
|
|
"main": "./src",
|
|
"files": [
|
|
"src"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@ostai/eslint-config": "^3.5.0",
|
|
"ava": "^3.13.0",
|
|
"codecov": "^3.7.2",
|
|
"eslint": "^7.10.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-mocha": "^8.0.0",
|
|
"nyc": "^15.1.0"
|
|
},
|
|
"scripts": {
|
|
"benchmark": "node benchmark/index.js",
|
|
"test": "npm run test:only",
|
|
"test:only": "NODE_DEBUG=array-timsort nyc ava --timeout=10s --verbose",
|
|
"test:dev": "npm run test:only && npm run report:dev",
|
|
"lint": "eslint .",
|
|
"fix": "eslint . --fix",
|
|
"posttest": "npm run report",
|
|
"report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
|
"report:dev": "nyc report --reporter=html && npm run report:open",
|
|
"report:open": "open coverage/index.html"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"test/*.test.js"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kaelzhang/node-array-timsort.git"
|
|
},
|
|
"keywords": [
|
|
"fast sort",
|
|
"array soft",
|
|
"sort",
|
|
"compare",
|
|
"TimSort",
|
|
"algorithm",
|
|
"python",
|
|
"performance"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/kaelzhang/node-array-timsort/issues"
|
|
}
|
|
}
|