-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.96 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
{
"name": "@abi-software/flatmap-viewer",
"version": "4.9.4",
"description": "Flatmap viewer using Maplibre GL",
"repository": {
"type": "git",
"url": "git+https://github.com/AnatomicMaps/flatmap-viewer.git"
},
"type": "module",
"files": [
"dist"
],
"module": "dist/flatmap-viewer.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/flatmap-viewer.js"
},
"./style.css": "./dist/index.css"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "bun oxigraph:check && vite serve app --port 3000",
"preview": "vite preview app --port 3000 ",
"build": "bun oxigraph:check && vite build app --base /",
"build:lib": "bun oxigraph:check && vite build --config vite.config.ts",
"build-docs": "bunx typedoc",
"clean": "bun scripts/clean.js",
"docs": "bunx typedoc --watch",
"format": "bunx --bun biome format --fix --max-diagnostics=none",
"format:check": "bunx --bun biome format --max-diagnostics=none",
"lint": "bunx --bun biome lint --fix --error-on-warnings --max-diagnostics=none",
"preview-docs": "live-server docs",
"oxigraph:check": "bun ./scripts/check-oxigraph.ts",
"typecheck": "tsc --noEmit -p tsconfig-build.json --composite false",
"tsdoc": "typedoc"
},
"author": "David Brooks",
"license": "Apache-2.0",
"dependencies": {
"@deck.gl/core": "~9.1.8",
"@deck.gl/extensions": "~9.1.8",
"@deck.gl/geo-layers": "~9.1.8",
"@deck.gl/layers": "~9.1.8",
"@deck.gl/mesh-layers": "~9.1.8",
"@deck.gl/mapbox": "~9.1.8",
"@jeswr/pretty-turtle": "^1.8.2",
"@luma.gl/engine": "~9.1.7",
"@mapbox/mapbox-gl-draw": "=1.4.3",
"@turf/along": "^7.1.0",
"@turf/area": "^7.4.0",
"@turf/bbox": "^7.4.0",
"@turf/clean-coords": "^7.4.0",
"@turf/helpers": "^7.4.0",
"@turf/length": "^7.4.0",
"@turf/nearest-point-on-line": "^7.4.0",
"@turf/projection": "^7.4.0",
"bezier-js": "^6.1.0",
"colord": "^2.9.3",
"graphology": "^0.25.4",
"graphology-operators": "^1.6.0",
"graphology-shortest-path": "^2.1.0",
"html-es6cape": "^2.0.2",
"maplibre-gl": "^5.24.0",
"maplibre-gl-svg": "./thirdParty/maplibre-gl-svg",
"mathjax-full": "^3.2.2",
"minisearch": "^2.2.1",
"oxigraph": "^0.5.6",
"pmtiles": "^4.5.0",
"polylabel": "^2.0.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"@compodoc/live-server": "^1.2.3",
"@math.gl/core": "^4.1.0",
"@types/node": "^25.0.9",
"@types/polylabel": "^1.1.3",
"glob": "^10.3.12",
"globals": "^15.14.0",
"typedoc": "^0.28.0",
"typedoc-github-theme": "^0.3.0",
"typedoc-plugin-inline-sources": "^1.3.0",
"typedoc-plugin-missing-exports": "^4.0.0",
"@typescript/typescript6": "^6.0.2",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vite-plugin-dts": "^5.0.3",
"vite-plugin-lib-inject-css": "^2.0.1"
}
}