-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 KB
/
package.json
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
{
"name": "@abi-software/flatmap-viewer",
"version": "3.2.12",
"description": "Flatmap viewer using Maplibre GL",
"repository": {
"type": "git",
"url": "git+https://github.com/AnatomicMaps/flatmap-viewer.git"
},
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "vite serve app --port 3000",
"prepare": "tsc --p ./tsconfig-build.json && vite build",
"preview": "vite preview",
"build": "vite build app --base /viewer/",
"docs": "cd docs; poetry run make html",
"tsdoc": "typedoc"
},
"author": "David Brooks",
"license": "MIT",
"dependencies": {
"@deck.gl/core": "^9.0.17",
"@deck.gl/geo-layers": "^9.0.18",
"@deck.gl/layers": "^9.0.17",
"@deck.gl/mapbox": "^9.0.17",
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@turf/along": "^7.1.0",
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/length": "^7.0.0",
"@turf/nearest-point-on-line": "^7.0.0",
"@turf/projection": "^6.5.0",
"bezier-js": "^6.1.0",
"colord": "^2.9.3",
"core-js": "^3.37.0",
"graphology": "^0.25.4",
"graphology-operators": "^1.6.0",
"graphology-shortest-path": "^2.1.0",
"html-es6cape": "^2.0.2",
"maplibre-gl": ">=4.7.1",
"mathjax-full": "^3.2.2",
"minisearch": "^2.2.1",
"polylabel": "^2.0.1"
},
"devDependencies": {
"@types/core-js": "^2.5.8",
"@types/node": "^20.12.7",
"@types/polylabel": "^1.1.3",
"eslint": "^8.7.0",
"glob": "^10.3.12",
"typedoc": "^0.25.13",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.8.1",
"vite-plugin-lib-inject-css": "^2.0.1"
}
}