-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "omt-router",
"version": "1.0.4",
"private": false,
"description": "Client-side routing library for OpenMapTiles vector tiles (pedestrian, car, bicycle).",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/omt-router.js",
"require": "./dist/omt-router.cjs"
}
},
"main": "dist/omt-router.cjs",
"module": "dist/omt-router.js",
"types": "types/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"types/index.d.ts"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/minify.js",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.js' 'tests/**/*.js' 'benchmark/**/*.js'",
"lint:fix": "eslint --fix 'src/**/*.js' 'tests/**/*.js' 'benchmark/**/*.js'",
"format": "prettier --write .",
"train": ".venv/bin/python benchmark/train_engine_selector_ml.py --root .",
"analyze:errors": "python3 benchmark/analyze_benchmark_errors.py --out-json benchmark/results/analysis/benchmark_error_analysis.json",
"analyze:features": ".venv/bin/python benchmark/analyze_feature_importance.py --out-json benchmark/results/analysis/engine_selector_feature_importance.json",
"compare-models": ".venv/bin/python benchmark/compare_engine_selector_results.py"
},
"keywords": [
"routing",
"navigation",
"openmaptiles",
"vector-tiles",
"maplibre",
"a-star",
"dijkstra",
"delta-stepping",
"barrier",
"SSSP",
"pedestrian",
"bicycle",
"car",
"isolines",
"isochrones",
"contours"
],
"author": {
"name": "Abel Vázquez Montoro",
"url": "https://github.com/AbelVM"
},
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/AbelVM/omt-router.git"
},
"bugs": {
"url": "https://github.com/AbelVM/omt-router/issues"
},
"homepage": "https://github.com/AbelVM/omt-router#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fullhuman/postcss-purgecss": "^8.0.0",
"@vitest/coverage-v8": "^4.1.8",
"cssnano": "^8.0.1",
"depcheck": "^1.4.7",
"esbuild": "^0.28.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"terser": "^5.48.0",
"vite": "^8.0.16",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vitest": "^4.1.8"
},
"dependencies": {
"@mapbox/vector-tile": "^3.0.0",
"d3-tricontour": "^1.1.0",
"kdbush": "^4.1.0",
"pbf": "^5.1.0",
"performance-helpers": "^1.0.2",
"rbush": "^4.0.1"
}
}