-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "@iiif/builder",
"version": "2.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/IIIF-Commons/iiif-builder.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs",
"types": "./dist/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
},
"scripts": {
"build": "tsc -p . --declaration --emitDeclarationOnly && rollup -c",
"prepublishOnly": "tsc -p . --declaration --emitDeclarationOnly && rollup -c",
"test": "jest"
},
"dependencies": {
"@iiif/parser": "^2.0.2",
"@iiif/presentation-3": "^2.1.3",
"@iiif/presentation-3-normalized": "^0.9.7",
"@iiif/helpers": "^1.0.5"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.2.2",
"prettier": "^2.5.1",
"rollup": "^2.64.0",
"rollup-library-template": "^1.0.4",
"ts-jest": "^29.0.3",
"typescript": "^4.5.4"
}
}