forked from samvera-labs/clover-iiif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.59 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
{
"name": "@samvera/clover-iiif",
"version": "1.15.3",
"description": "Viewer for audio, video and image file types driven by a IIIF manifest",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/samvera-labs/clover-iiif.git"
},
"scripts": {
"build": "npm run clean && node build.js && tsc --emitDeclarationOnly --outDir dist",
"build:static": "NODE_ENV=static OUT_DIR=static node build-static.js",
"clean": "rimraf dist",
"dev": "NODE_ENV=development node serve.js",
"test": "jest --watch",
"test-ci": "jest",
"prepublishOnly": "npm run build",
"ts-lint": "tsc --noEmit --incremental --watch"
},
"keywords": [
"IIIF",
"media player"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@iiif/presentation-3": "^1.1.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.2",
"@types/openseadragon": "^3.0.3",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/testing-library__react": "^10.2.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chokidar": "^3.5.3",
"dotenv": "^16.0.2",
"esbuild": "^0.15.7",
"esbuild-css-modules-plugin": "^2.5.2",
"esbuild-envfile-plugin": "^1.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"fs-extra": "^10.1.0",
"jest": "^29.0.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.0.3",
"jest-fetch-mock": "^3.0.3",
"live-server": "^1.2.2",
"markdown-it": "^13.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"shiki": "^0.11.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@iiif/vault": "^0.9.19",
"@iiif/vault-helpers": "^0.9.11",
"@nulib/design-system": "^1.6.0",
"@radix-ui/react-collapsible": "^1.0.1",
"@radix-ui/react-radio-group": "^1.1.0",
"@radix-ui/react-select": "^1.1.1",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tabs": "^1.0.1",
"@samvera/nectar-iiif": "^0.0.18",
"@stitches/react": "^1.2.8",
"hls.js": "^1.2.4",
"node-webvtt": "^1.9.4",
"openseadragon": "^2.4.2 || ^3.10",
"react": "^16.13.1 || ^17 || ^18",
"react-dom": "^16.13.1 || ^17 || ^18",
"react-error-boundary": "^3.1.4",
"uuid": "^9.0.0"
},
"files": [
"dist"
]
}