✨ 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
75 lines
2.4 KiB
JSON
75 lines
2.4 KiB
JSON
{
|
|
"name": "eslint-visitor-keys",
|
|
"version": "3.4.3",
|
|
"description": "Constants and utilities about visitor keys to traverse AST.",
|
|
"type": "module",
|
|
"main": "dist/eslint-visitor-keys.cjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": [
|
|
{
|
|
"import": "./lib/index.js",
|
|
"require": "./dist/eslint-visitor-keys.cjs"
|
|
},
|
|
"./dist/eslint-visitor-keys.cjs"
|
|
],
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/index.d.ts",
|
|
"dist/visitor-keys.d.ts",
|
|
"dist/eslint-visitor-keys.cjs",
|
|
"dist/eslint-visitor-keys.d.cts",
|
|
"lib"
|
|
],
|
|
"engines": {
|
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/estree": "^0.0.51",
|
|
"@types/estree-jsx": "^0.0.1",
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
"c8": "^7.11.0",
|
|
"chai": "^4.3.6",
|
|
"eslint": "^7.29.0",
|
|
"eslint-config-eslint": "^7.0.0",
|
|
"eslint-plugin-jsdoc": "^35.4.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-release": "^3.2.0",
|
|
"esquery": "^1.4.0",
|
|
"json-diff": "^0.7.3",
|
|
"mocha": "^9.2.1",
|
|
"opener": "^1.5.2",
|
|
"rollup": "^2.70.0",
|
|
"rollup-plugin-dts": "^4.2.3",
|
|
"tsd": "^0.19.1",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build:cjs && npm run build:types",
|
|
"build:cjs": "rollup -c",
|
|
"build:debug": "npm run build:cjs -- -m && npm run build:types",
|
|
"build:keys": "node tools/build-keys-from-ts",
|
|
"build:types": "tsc",
|
|
"lint": "eslint .",
|
|
"prepare": "npm run build",
|
|
"release:generate:latest": "eslint-generate-release",
|
|
"release:generate:alpha": "eslint-generate-prerelease alpha",
|
|
"release:generate:beta": "eslint-generate-prerelease beta",
|
|
"release:generate:rc": "eslint-generate-prerelease rc",
|
|
"release:publish": "eslint-publish-release",
|
|
"test": "mocha tests/lib/**/*.cjs && c8 mocha tests/lib/**/*.js && npm run test:types",
|
|
"test:open-coverage": "c8 report --reporter lcov && opener coverage/lcov-report/index.html",
|
|
"test:types": "tsd"
|
|
},
|
|
"repository": "eslint/eslint-visitor-keys",
|
|
"funding": "https://opencollective.com/eslint",
|
|
"keywords": [],
|
|
"author": "Toru Nagashima (https://github.com/mysticatea)",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/eslint/eslint-visitor-keys/issues"
|
|
},
|
|
"homepage": "https://github.com/eslint/eslint-visitor-keys#readme"
|
|
}
|