-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.69 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-browser",
"version": "1.2.0",
"type": "module",
"bugs": "https://github.com/digirati-co-uk/iiif-browser/issues",
"repository": {
"type": "git",
"url": "https://github.com/digirati-co-uk/iiif-browser.git"
},
"engines": {
"node": ">=18.14.1"
},
"keywords": [
"iiif",
"editor",
"typescript"
],
"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"
}
},
"./dist/index.css": "./dist/index.css"
},
"scripts": {
"build": "tsup src/index.ts",
"start": "vite",
"dev": "tsup src/index.ts --watch",
"lint": "publint",
"typecheck": "tsc --noEmit",
"prepack": "tsup src/index.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@atlas-viewer/atlas": "^2.0.6",
"@iiif/helpers": "^1.3.1",
"@iiif/parser": "^2.1.7",
"@iiif/presentation-3": "^2.2.3",
"@iiif/presentation-3-normalized": "^0.9.7",
"cmdk": "^1.0.4",
"history": "^5.3.0",
"minisearch": "^7.1.2",
"mitt": "^3.0.1",
"react": "^18.3.1",
"react-accessible-dropdown-menu-hook": "4.0.0",
"react-aria": "^3.37.0",
"react-aria-components": "^1.6.0",
"react-dom": "^18.3.1",
"react-iiif-vault": "^1.5.1",
"react-lazy-load-image-component": "^1.6.0",
"react-minisearch": "^7.1.3",
"react-router-dom": "^7.1.5",
"tailwind-merge": "^3.0.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@atlas-viewer/iiif-image-api": "^2.2.0",
"@chromatic-com/storybook": "^3.2.4",
"@storybook/addon-essentials": "^8.5.5",
"@storybook/addon-interactions": "^8.5.5",
"@storybook/addon-onboarding": "^8.5.5",
"@storybook/blocks": "^8.5.5",
"@storybook/manager-api": "^8.5.8",
"@storybook/react": "^8.5.5",
"@storybook/react-vite": "^8.5.5",
"@storybook/test": "^8.5.5",
"@tailwindcss/container-queries": "^0.1.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-lazy-load-image-component": "^1.6.4",
"@vitejs/plugin-react": "^4.3.4",
"esbuild-plugin-react18-css": "^0.0.2",
"esbuild-plugin-umd-wrapper": "^2.0.0",
"postcss": "^8.4.38",
"react-error-boundary": "^4.0.13",
"storybook": "^8.5.5",
"tailwindcss": "3",
"tiny-invariant": "^1.3.3",
"tsup": "^8.0.2",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^6.1.0"
},
"publishConfig": {
"access": "public"
}
}