generated from digirati-labs/fesk-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.31 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
{
"name": "@atlas-viewer/iiif-image-api",
"version": "2.2.1",
"typings": "dist/index.d.ts",
"author": "Stephen Fraser <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/atlas-viewer/iiif-image-api/issues",
"repository": {
"type": "git",
"url": "https://github.com/atlas-viewer/iiif-image-api.git"
},
"engines": {
"node": ">=18.14.1"
},
"keywords": [
"iiif",
"atlas-viewer",
"typescript"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup src/index.ts",
"dev": "tsup src/index.ts --watch",
"typecheck": "tsc --noEmit",
"test": "vitest",
"prepack": "tsup src/index.ts",
"lint": "publint"
},
"dependencies": {
"@iiif/presentation-3": "*"
},
"devDependencies": {
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"typescript": "^5.4.4",
"publint": "^0.2.7",
"tsup": "^8.0.2",
"vitest": "^1.4.0"
},
"publishConfig": {
"access": "public"
}
}