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 1
/
Copy pathpackage.json
161 lines (161 loc) · 4.38 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@iiif/vault-helpers",
"version": "0.10.0",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": ".build/types/index.d.ts",
"files": [
".build",
"dist"
],
"sideEffects": false,
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs",
"default": "./dist/index.umd.js"
},
"./events": {
"require": "./dist/events/cjs/events.js",
"import": "./dist/events/esm/events.mjs"
},
"./i18n": {
"require": "./dist/i18n/cjs/i18n.js",
"import": "./dist/i18n/esm/i18n.mjs"
},
"./react-i18next": {
"require": "./dist/react-i18next/cjs/react-i18next.js",
"import": "./dist/react-i18next/esm/react-i18next.mjs"
},
"./styles": {
"require": "./dist/styles/cjs/styles.js",
"import": "./dist/styles/esm/styles.mjs"
},
"./thumbnail": {
"require": "./dist/thumbnail/cjs/thumbnail.js",
"import": "./dist/thumbnail/esm/thumbnail.mjs"
},
"./annotation-targets": {
"require": "./dist/annotation-targets/cjs/annotation-targets.js",
"import": "./dist/annotation-targets/esm/annotation-targets.mjs"
},
"./content-state": {
"require": "./dist/content-state/cjs/content-state.js",
"import": "./dist/content-state/esm/content-state.mjs"
},
"./fetch": {
"require": "./dist/fetch/cjs/fetch.js",
"import": "./dist/fetch/esm/fetch.mjs"
},
"./painting-annotations": {
"require": "./dist/painting-annotations/cjs/painting-annotations.js",
"import": "./dist/painting-annotations/esm/painting-annotations.mjs"
},
"./objects": {
"require": "./dist/objects/cjs/objects.js",
"import": "./dist/objects/esm/objects.mjs"
},
"./ranges": {
"require": "./dist/ranges/cjs/ranges.js",
"import": "./dist/ranges/esm/ranges.mjs"
},
"./sequences": {
"require": "./dist/sequences/cjs/sequences.js",
"import": "./dist/sequences/esm/sequences.mjs"
}
},
"typesVersions": {
"*": {
"*": [
".build/types/index.d.ts"
],
"events": [
".build/types/events.d.ts"
],
"i18n": [
".build/types/i18n.d.ts"
],
"react-i18next": [
".build/types/react-i18next.d.ts"
],
"styles": [
".build/types/styles.d.ts"
],
"thumbnail": [
".build/types/thumbnail.d.ts"
],
"annotation-targets": [
".build/types/annotation-targets.d.ts"
],
"content-state": [
".build/types/content-state.d.ts"
],
"painting-annotations": [
".build/types/painting-annotations.d.ts"
],
"objects": [
".build/types/objects.d.ts"
],
"ranges": [
".build/types/ranges.d.ts"
],
"fetch": [
".build/types/fetch.d.ts"
],
"sequences": [
".build/types/sequences.d.ts"
]
}
},
"scripts": {
"start": "vite demos",
"build": "tsc -p . --declaration --emitDeclarationOnly && node ./vite/build.mjs",
"prepublishOnly": "tsc -p . --declaration --emitDeclarationOnly && node ./vite/build.mjs",
"test": "vitest"
},
"dependencies": {
"@iiif/presentation-2": "1.x",
"@iiif/presentation-3": "1.x"
},
"optionalDependencies": {
"react-i18next": "^11.18.0",
"svg-arc-to-cubic-bezier": "^3.2.0",
"parse-svg-path": "^0.1.0",
"abs-svg-path": "^0.1.0"
},
"peerDependencies": {
"@atlas-viewer/iiif-image-api": "^2.1.1",
"@iiif/vault": "0.9.x"
},
"devDependencies": {
"@atlas-viewer/iiif-image-api": "^2.1.1",
"@iiif/vault": "^0.9.19",
"@iiif/parser": "^1.0.10",
"@types/jsdom": "^20.0.0",
"@types/react": "^17.0.38",
"@types/svg-arc-to-cubic-bezier": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vitejs/plugin-react": "^1.3.2",
"chalk": "^5.0.1",
"eslint": "^8.7.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"happy-dom": "^6.0.3",
"jsdom": "^20.0.0",
"node-fetch": "3.3.0",
"prettier": "^2.5.1",
"react": "17.0.2",
"react-i18next": "^11.18.0",
"rollup": "^2.64.0",
"rollup-library-template": "^1.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^2.9.14",
"vitest": "^0.18.0"
},
"publishConfig": {
"access": "public"
}
}