-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "geotiff-tilesource",
"version": "2.0.4",
"description": "A plugin tilesource for OpenSeadragon that uses geotiff.js to provide serverless access to view compatible local or remote TIFF files",
"files": [
"dist"
],
"main": "./dist/geotiff-tilesource.min.js",
"module": "./dist/geotiff-tilesource.mjs",
"exports": {
".": {
"import": "./dist/geotiff-tilesource.mjs",
"require": "./dist/geotiff-tilesource.min.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest"
},
"type": "module",
"devDependencies": {
"canvas": "^2.11.2",
"jsdom": "^24.1.0",
"openseadragon": "^4.1.1",
"prettier": "3.2.5",
"rollup-plugin-license": "^3.4.0",
"vite": "^5.0.8",
"vitest": "^1.6.0"
},
"dependencies": {
"geotiff": "^2.1.2"
},
"peerDependencies": {
"openseadragon": "^3.0.0 || ^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pearcetm/GeoTIFFTileSource"
}
}