-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (43 loc) · 1.33 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
{ "name": "heiimageviewer",
"version": "0.1.0",
"description": "An image viewer for use in websites, developed at the Heidelberg University Library for displaying images of digitized facsimili.",
"author": "Heidelberg University Library (https://www.ub.uni-heidelberg.de/)",
"homepage": "https://github.com/UB-Heidelberg/heiImageViewer/",
"repository": {
"type": "git",
"url": "git+https://github.com/UB-Heidelberg/heiImageViewer.git"
},
"bugs": {
"url": "https://github.com/UB-Heidelberg/heiImageViewer/issues"
},
"contributors": [
"Gustavo Riva (https://github.com/GusRiva)",
"M.K. (https://github.com/mk-pmb)"
],
"private": false, "license": "MIT",
"type": "module",
"main": "src/index.js",
"directories": { "test": "test" },
"scripts": {
"test": "echo 'No tests yet!' >&2; exit 2"
},
"eslintConfig": { "extends": "nodejs-pmb",
"env": { "browser": true }
},
"dependencies": {
"@webcomponents/shadydom": "^1.11.0",
"get-root-node-polyfill": "^1.0.0",
"ol": "^9.0.0",
"ol-ext": "^4.0.18",
"rosetta": "^1.1.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"docdash": "^2.0.2",
"jsdoc": "~4.0.2",
"jsdoc-to-markdown": "^8.0.0",
"prettier": "3.2.5",
"vite": "^7.1.10"
},
"engines": { "npm": ">=7.0.0", "node": ">=16.0.0" }
}