-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "ogm-viewer",
"version": "0.2.0",
"description": "A web-based viewer for previewing OpenGeoMetadata records",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/ogm-viewer/ogm-viewer.esm.js",
"exports": {
".": {
"import": "./dist/ogm-viewer/ogm-viewer.esm.js",
"require": "./dist/ogm-viewer/ogm-viewer.cjs.js"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/stenciljs/component-starter.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"lint": "prettier --check ."
},
"devDependencies": {
"@stencil/core": "^4.27.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettier": "^3.6.2",
"puppeteer": "^24.3.0"
},
"license": "MIT",
"dependencies": {
"@geomatico/maplibre-cog-protocol": "^0.5.0",
"@iiif/presentation-2": "^1.0.4",
"@iiif/presentation-3": "^2.2.3",
"@shoelace-style/shoelace": "^2.20.1",
"@terraformer/wkt": "^2.2.1",
"d3-scale": "^4.0.2",
"maplibre-gl": "^5.6.0",
"openseadragon": "^5.0.1"
}
}