✨ 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
93 lines
2.4 KiB
JSON
93 lines
2.4 KiB
JSON
{
|
|
"name": "strtok3",
|
|
"version": "10.3.2",
|
|
"description": "A promise based streaming tokenizer",
|
|
"author": {
|
|
"name": "Borewit",
|
|
"url": "https://github.com/Borewit"
|
|
},
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/Borewit"
|
|
},
|
|
"scripts": {
|
|
"clean": "del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map'",
|
|
"compile-src": "tsc -p lib",
|
|
"compile-test": "tsc -p test",
|
|
"compile": "yarn run compile-src && yarn run compile-test",
|
|
"build": "yarn run clean && yarn run compile",
|
|
"eslint": "eslint lib test",
|
|
"lint:md": "remark -u preset-lint-recommended .",
|
|
"lint:ts": "biome check",
|
|
"lint": "yarn run lint:md && yarn run lint:ts",
|
|
"fix": "yarn run biome lint --write",
|
|
"test": "mocha",
|
|
"bun:test": "bun run --bun test",
|
|
"test-coverage": "c8 yarn run test",
|
|
"send-codacy": "c8 report --reporter=text-lcov | codacy-coverage",
|
|
"start": "yarn run compile && yarn run lint && yarn run cover-test"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Borewit/strtok3.git"
|
|
},
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"node": "./lib/index.js",
|
|
"default": "./lib/core.js"
|
|
},
|
|
"./core": "./lib/core.js"
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib/**/*.js",
|
|
"lib/**/*.d.ts"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/Borewit/strtok3/issues"
|
|
},
|
|
"dependencies": {
|
|
"@tokenizer/token": "^0.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.1.1",
|
|
"@types/chai": "^5.2.2",
|
|
"@types/chai-as-promised": "^8.0.2",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^24.0.7",
|
|
"c8": "^10.1.3",
|
|
"chai": "^5.2.1",
|
|
"chai-as-promised": "^8.0.1",
|
|
"del-cli": "^6.0.0",
|
|
"mocha": "^11.7.1",
|
|
"node-readable-to-web-readable-stream": "^0.4.2",
|
|
"remark-cli": "^12.0.1",
|
|
"remark-preset-lint-recommended": "^7.0.1",
|
|
"token-types": "^6.0.3",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.3",
|
|
"uint8array-extras": "^1.4.0"
|
|
},
|
|
"keywords": [
|
|
"tokenizer",
|
|
"reader",
|
|
"token",
|
|
"async",
|
|
"promise",
|
|
"parser",
|
|
"decoder",
|
|
"binary",
|
|
"endian",
|
|
"uint",
|
|
"stream",
|
|
"streaming"
|
|
],
|
|
"packageManager": "yarn@4.9.2"
|
|
}
|