-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
{
"name": "mirador-dl-plugin",
"version": "1.0.0-alpha.2",
"description": "mirador-dl-plugin React component",
"main": "./dist/mirador-dl-plugin.js",
"module": "./dist/mirador-dl-plugin.es.js",
"files": [
"dist"
],
"exports": {
"./src": "./src/index.js",
".": {
"import": "./dist/mirador-dl-plugin.es.js",
"require": "./dist/mirador-dl-plugin.js"
}
},
"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",
"test:coverage": "npm run lint && npx vitest run --coverage"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6"
},
"peerDependencies": {
"@mui/material": "^5.x",
"lodash": "^4.17.11",
"mirador": "^4.0.0-alpha.7",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "^13.0.0 || ^14.0.0 || ^15.0.0"
},
"devDependencies": {
"@mui/material": "^5.x",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^4.3.4",
"@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.4.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^6.2.0",
"glob": "^10.3.0",
"happy-dom": "^15.11.7",
"lodash": "^4.17.15",
"mirador": "^4.0.0-alpha.5",
"react": "^18.0.0",
"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",
"repository": "",
"keywords": [
"react-component"
]
}