✨ 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
100 lines
2.7 KiB
JSON
100 lines
2.7 KiB
JSON
{
|
|
"name": "@nestjs/schematics",
|
|
"version": "10.2.3",
|
|
"description": "Nest - modern, fast, powerful node.js web framework (@schematics)",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"postbuild": "npm run copy:collection && npm run copy:lib",
|
|
"build": "rm -rf dist && tsc --project tsconfig.lib.json",
|
|
"clean": "gulp clean:src",
|
|
"copy:collection": "cpx src/collection.json dist && cpx 'src/lib/**/schema.json' dist/lib",
|
|
"copy:lib": "cpx 'src/lib/**/{files,workspace}/**/*.*' dist/lib && cpx 'src/lib/**/{files,workspace}/**/.!(gitignore)' dist/lib",
|
|
"lint": "eslint '{src,test}/**/*.ts' --fix",
|
|
"prepublish:next": "npm run build",
|
|
"publish:next": "npm publish --access public --tag next",
|
|
"prepublish:npm": "npm run build",
|
|
"publish:npm": "npm publish --access public",
|
|
"test": "npm run clean && NODE_ENV=test jest -w 1 --no-cache --config jest.json",
|
|
"test:dev": "NODE_ENV=test npm run -s test -- --watchAll",
|
|
"prerelease": "npm run build",
|
|
"release": "release-it",
|
|
"prepare": "husky install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nestjs/schematics.git"
|
|
},
|
|
"contributors": [
|
|
"ThomRick",
|
|
"Kamil Mysliwiec",
|
|
"John Biundo"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nestjs/schematics/issues"
|
|
},
|
|
"homepage": "https://github.com/nestjs/schematics#readme",
|
|
"dependencies": {
|
|
"@angular-devkit/core": "17.3.11",
|
|
"@angular-devkit/schematics": "17.3.11",
|
|
"comment-json": "4.2.5",
|
|
"jsonc-parser": "3.3.1",
|
|
"pluralize": "8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "19.5.0",
|
|
"@commitlint/config-angular": "19.5.0",
|
|
"@types/jest": "29.5.14",
|
|
"@types/node": "20.17.1",
|
|
"@typescript-eslint/eslint-plugin": "8.11.0",
|
|
"@typescript-eslint/parser": "8.11.0",
|
|
"cpx2": "8.0.0",
|
|
"eslint": "9.13.0",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-import": "2.31.0",
|
|
"gulp": "5.0.0",
|
|
"gulp-clean": "0.4.0",
|
|
"husky": "9.1.6",
|
|
"jest": "29.7.0",
|
|
"nyc": "17.1.0",
|
|
"release-it": "17.10.0",
|
|
"ts-jest": "29.2.5",
|
|
"ts-node": "10.9.2",
|
|
"typescript": "5.6.3"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": ">=4.8.2"
|
|
},
|
|
"schematics": "./dist/collection.json",
|
|
"nyc": {
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test"
|
|
],
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
],
|
|
"reporter": [
|
|
"text-summary",
|
|
"html"
|
|
],
|
|
"sourceMap": true,
|
|
"instrument": true
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{ts,json}": []
|
|
}
|
|
}
|