-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
100 lines (100 loc) · 2.52 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
{
"name": "@atlas-viewer/atlas",
"version": "2.2.8",
"bugs": "https://github.com/atlas-viewer/atlas/issues",
"repository": {
"type": "git",
"url": "https://github.com/atlas-viewer/atlas"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"web": "dist/index.global.js",
"types": "dist/index.d.ts",
"author": "Stephen Fraser <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepack": "tsup",
"lint": "publint",
"storybook": "vite",
"test": "vitest",
"build-vite": "vite build",
"idea-test": "vitest --watch --reporter=dot --reporter=json --outputFile=.vitest-result.json"
},
"dependencies": {
"@atlas-viewer/dna": "^0.5.0",
"@atlas-viewer/iiif-image-api": "^2.2.0",
"@iiif/presentation-3": ">=2",
"@iiif/helpers": "^1.1.0",
"@iiif/parser": "^2.1.0",
"lru-cache": "^7.17.0",
"normalize-wheel": "^1.0.1",
"react-reconciler": "^0.29.0",
"react-use-measure": "^2.0.1",
"scheduler": "^0.21.0"
},
"peerDependencies": {
"react": ">=17.0",
"react-dom": ">=17.0"
},
"sideEffects": false,
"devDependencies": {
"nanoid": "^5.0.7",
"@storylite/storylite": "^0.15.1",
"@storylite/vite-plugin": "^0.15.0",
"@iiif/presentation-3-normalized": "^0.9.7",
"@types/nanoid": "^3.0.0",
"@types/node": "~18",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-reconciler": "^0.28.8",
"@types/scheduler": "^0.16.2",
"@vitejs/plugin-react": "^1.3.2",
"happy-dom": "^6.0.3",
"prettier": "^2.4.1",
"react": ">=17.0",
"react-16": "npm:react@16",
"react-17": "npm:react@17",
"react-18": "npm:react@18",
"react-dom": ">=17.0",
"react-dom-16": "npm:react-dom@16",
"react-dom-17": "npm:react-dom@17",
"react-dom-18": "npm:react-dom@18",
"react-is": "^16.13.1",
"tslib": "^2.6.2",
"typesafe-actions": "^5.1.0",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vitest": "^1.4.0",
"publint": "^0.2.7",
"tsup": "^8.0.2"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}