✨ 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
98 lines
2.1 KiB
JSON
98 lines
2.1 KiB
JSON
{
|
|
"name": "iterare",
|
|
"version": "1.2.1",
|
|
"description": "Array methods for ES6 Iterators",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"scripts": {
|
|
"tslint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
|
|
"prettier": "prettier --write --list-different '**/*.{ts,json,js,md,yml}'",
|
|
"test": "nyc mocha",
|
|
"build": "tsc",
|
|
"watch": "tsc -w",
|
|
"typedoc": "typedoc --out typedoc --tsconfig tsconfig.json --ignoreCompilerErrors --mode file --excludeExternals src",
|
|
"semantic-release": "semantic-release"
|
|
},
|
|
"nyc": {
|
|
"all": true,
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/**/*.test.ts"
|
|
],
|
|
"reporter": [
|
|
"text",
|
|
"json"
|
|
]
|
|
},
|
|
"mocha": {
|
|
"spec": "src/**/*.test.ts",
|
|
"require": "ts-node/register"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"iterator",
|
|
"iteration",
|
|
"functional",
|
|
"es6",
|
|
"collection",
|
|
"array",
|
|
"map",
|
|
"set",
|
|
"filter",
|
|
"reduce",
|
|
"flatten",
|
|
"concat",
|
|
"every",
|
|
"some"
|
|
],
|
|
"author": "Felix Becker <felix.b@outlook.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/felixfbecker/iterare"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/felixfbecker/iterare/issues"
|
|
},
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^8.0.0",
|
|
"@commitlint/config-conventional": "^8.0.0",
|
|
"@reactivex/ix-es2015-cjs": "^2.5.3",
|
|
"@types/benchmark": "^1.0.31",
|
|
"@types/lodash": "^4.14.134",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^7.10.6",
|
|
"benchmark": "^2.1.4",
|
|
"husky": "^2.4.0",
|
|
"ix": "^2.5.3",
|
|
"lodash": "^4.17.11",
|
|
"mocha": "^6.1.4",
|
|
"nyc": "^14.1.1",
|
|
"prettier": "^1.18.1",
|
|
"rxjs": "^6.5.2",
|
|
"semantic-release": "^15.13.12",
|
|
"ts-node": "^8.2.0",
|
|
"tslint": "^5.17.0",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typedoc": "^0.14.2",
|
|
"typescript": "~3.5.1"
|
|
}
|
|
}
|