-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "@samvera/nectar-iiif",
"version": "0.0.20",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && node build.js&& tsc --emitDeclarationOnly",
"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"
],
"repository": {
"type": "git",
"url": "git+https://github.com/samvera-labs/nectar-iiif.git"
},
"author": "Northwestern University Libraries",
"license": "MIT",
"bugs": {
"url": "https://github.com/samvera-labs/nectar-iiif.git/issues"
},
"homepage": "https://github.com/samvera-labs/nectar-iiif.git#readme",
"devDependencies": {
"@iiif/presentation-3": "^1.1.3",
"@iiif/vault": "^0.9.19",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/sanitize-html": "^2.6.2",
"chokidar": "^3.5.3",
"esbuild": "^0.15.16",
"esbuild-envfile-plugin": "^1.0.5",
"fs-extra": "^11.1.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"live-server": "^1.2.2",
"markdown-it": "^13.0.1",
"rimraf": "^3.0.2",
"shiki": "^0.11.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@stitches/react": "^1.2.8",
"hls.js": "^1.2.8",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0",
"sanitize-html": "^2.7.3"
},
"files": [
"dist"
]
}