-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 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
{
"name": "mirador-share-plugin",
"version": "1.0.0-alpha.3",
"description": "mirador-share-plugin React component",
"type": "module",
"main": "./dist/mirador-share-plugin.js",
"module": "./dist/mirador-share-pugin.es.js",
"files": [
"dist"
],
"exports": {
"./src": "./src/index.js",
".": {
"import": "./dist/mirador-share-plugin.es.js",
"require": "./dist/mirador-share-plugin.js"
}
},
"repository": {
"type": "git",
"url": "[email protected]:ProjectMirador/mirador-share-plugin.git"
},
"scripts": {
"build": "vite build --config vite.config.js",
"clean": "rm -rf ./dist",
"lint": "npx eslint ./",
"prepublishOnly": "npm run build",
"start": "vite",
"test": "npm run lint && npx vitest run"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"notistack": "^3.0.1"
},
"peerDependencies": {
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.5",
"mirador": "^4.0.0-alpha.10",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.4",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"glob": "^10.3.0",
"happy-dom": "^15.11.7",
"mirador": "^4.0.0-alpha.5",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^18.0.0",
"vite": "^6.0.0",
"vitest": "^2.1.4",
"vitest-fetch-mock": "^0.4.2"
},
"author": "",
"homepage": "",
"license": "Apache-2.0",
"keywords": [
"react-component"
]
}