-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "@iiif/thumbnail-panel",
"version": "0.0.13",
"repository": "[email protected]:IIIF-Commons/thumbnail-panel.git",
"license": "MIT",
"main": "dist/bundle/cjs/index.js",
"module": "dist/bundle/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/bundle/esm/index.mjs",
"require": "./dist/bundle/cjs/index.js"
},
"./dist/style.css": {
"import": "./dist/style.css"
},
"./dist/index.d.ts": {
"import": "./dist/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
},
"scripts": {
"start": "vite",
"build": "node ./scripts/build.mjs",
"prepublishOnly": "node ./scripts/build.mjs && node scripts/validate.mjs",
"test": "vitest",
"ts-lint": "tsc --incremental --watch"
},
"devDependencies": {
"@happy-dom/global-registrator": "^8.1.4",
"@iiif/presentation-3": "^1.1.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.27.2",
"chalk": "^5.2.0",
"cross-fetch": "^3.1.5",
"dts-bundle-generator": "^7.1.0",
"eslint": "^8.32.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^6.1.0",
"jsdom": "^21.1.1",
"node-fetch": "^3.3.0",
"prettier": "^2.8.3",
"preact": "^10.15.0",
"terser": "^5.16.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.27.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@atlas-viewer/iiif-image-api": "^2.1.1",
"@iiif/vault-helpers": "https://pkg.csb.dev/IIIF-Commons/vault-helpers/commit/8cc61732/@iiif/vault-helpers",
"@iiif/vocabulary": "^1.0.26",
"leva": "^0.9.34",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}