This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
99 lines (99 loc) · 2.5 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@iiif/vault",
"version": "0.9.22",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"npm"
],
"exports": {
".": {
"node": {
"require": "./dist/cjs-node/index.node.js",
"import": "./dist/esm-node/index.node.mjs",
"default": "./dist/cjs-node/index.node.js"
},
"browser": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs",
"default": "./dist/index.umd.js"
}
},
"./global-vault": {
"require": "./npm/global-vault.js",
"import": "./npm/global-vault.mjs",
"default": "./npm/global-vault.js"
},
"./actions": {
"require": "./dist/actions/cjs/index.js",
"import": "./dist/actions/esm/index.mjs",
"default": "./dist/actions/cjs/index.js"
},
"./store": {
"require": "./dist/store/cjs/index.js",
"import": "./dist/store/esm/index.mjs",
"default": "./dist/store/cjs/index.js"
},
"./utility": {
"require": "./dist/utility/cjs/index.js",
"import": "./dist/utility/esm/index.mjs",
"default": "./dist/utility/cjs/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"actions": [
"dist/actions/index.d.ts"
],
"store": [
"dist/store/index.d.ts"
],
"utility": [
"dist/utility/index.d.ts"
]
}
},
"scripts": {
"build": "tsc -p . --declaration --emitDeclarationOnly && rollup -c",
"prepublishOnly": "tsc -p . --declaration --emitDeclarationOnly && rollup -c",
"test": "jest"
},
"resolutions": {
"@iiif/presentation-3": "^1.1.3"
},
"dependencies": {
"@iiif/parser": "^1.1.2",
"@iiif/presentation-2": "1.*",
"@iiif/presentation-3": "^1.1.3",
"mitt": "^3.0.0",
"node-fetch": "^3.1.1",
"redux": "^4.1.2",
"tiny-invariant": "^1.2.0",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.1",
"@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": "^27.4.7",
"prettier": "^2.5.1",
"rollup": "^2.64.0",
"rollup-library-template": "^1.0.3",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"publishConfig": {
"access": "public"
}
}