✨ 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
59 lines
1.9 KiB
JSON
59 lines
1.9 KiB
JSON
{
|
|
"name": "asap",
|
|
"version": "2.0.6",
|
|
"description": "High-priority task queue for Node.js and browsers",
|
|
"keywords": [
|
|
"event",
|
|
"task",
|
|
"queue"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kriskowal/asap.git"
|
|
},
|
|
"main": "./asap.js",
|
|
"browser": {
|
|
"./asap": "./browser-asap.js",
|
|
"./asap.js": "./browser-asap.js",
|
|
"./raw": "./browser-raw.js",
|
|
"./raw.js": "./browser-raw.js",
|
|
"./test/domain.js": "./test/browser-domain.js"
|
|
},
|
|
"react-native": {
|
|
"domain": false
|
|
},
|
|
"files": [
|
|
"raw.js",
|
|
"asap.js",
|
|
"browser-raw.js",
|
|
"browser-asap.js"
|
|
],
|
|
"scripts": {
|
|
"test": "npm run lint && npm run test-node",
|
|
"test-travis": "npm run lint && npm run test-node && npm run test-saucelabs && npm run test-saucelabs-worker",
|
|
"test-node": "node test/asap-test.js",
|
|
"test-publish": "node scripts/publish-bundle.js test/asap-test.js | pbcopy",
|
|
"test-browser": "node scripts/publish-bundle.js test/asap-test.js | xargs opener",
|
|
"test-saucelabs": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-spot-configurations.json",
|
|
"test-saucelabs-all": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-all-configurations.json",
|
|
"test-saucelabs-worker": "node scripts/saucelabs-worker-test.js scripts/saucelabs-spot-configurations.json",
|
|
"test-saucelabs-worker-all": "node scripts/saucelabs-worker-test.js scripts/saucelabs-all-configurations.json",
|
|
"lint": "jshint raw.js asap.js browser-raw.js browser-asap.js $(find scripts -name '*.js' | grep -v gauntlet)",
|
|
"benchmarks": "node benchmarks"
|
|
},
|
|
"devDependencies": {
|
|
"events": "^1.0.1",
|
|
"jshint": "^2.5.1",
|
|
"knox": "^0.8.10",
|
|
"mr": "^2.0.5",
|
|
"opener": "^1.3.0",
|
|
"q": "^2.0.3",
|
|
"q-io": "^2.0.3",
|
|
"saucelabs": "^0.1.1",
|
|
"wd": "^0.2.21",
|
|
"weak-map": "^1.0.5",
|
|
"benchmark": "^1.0.0"
|
|
}
|
|
}
|