-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "@archival-iiif/image-server-core",
"version": "2.2.0",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"sharp": "0.33.5",
"@types/node": "22.10.6"
},
"devDependencies": {
"typescript": "5.7.3",
"mocha": "11.0.1",
"@types/mocha": "10.0.10",
"sinon": "19.0.2",
"@types/sinon": "17.0.3",
"chai": "5.1.2",
"@types/chai": "5.0.1",
"nodemon": "3.1.9",
"ts-node": "10.9.2"
},
"scripts": {
"build": "tsc",
"test": "mocha",
"start": "ts-node ./src/web.ts",
"watch": "nodemon --watch \"src/**/*\" -e ts,tsx --exec ts-node \"./src/web.ts\" --"
},
"description": "Core functions to build a IIIF image server and a ready-to-go image server.",
"repository": {
"type": "git",
"url": "git+https://github.com/archival-IIIF/image-server-core.git"
},
"keywords": [
"IIIF"
],
"author": "Archival IIIF",
"bugs": {
"url": "https://github.com/archival-IIIF/image-server-core/issues"
},
"homepage": "https://github.com/archival-IIIF/image-server-core#readme"
}