-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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
{
"name": "chartjs-plugin-a11y-legend",
"version": "0.2.0",
"type": "module",
"description": "Chart.js plugin to provide keyboard navigation to legends",
"main": "dist/plugin.js",
"module": "dist/plugin.mjs",
"exports": {
"import": "./dist/plugin.mjs",
"types": "./dist/plugin.d.ts"
},
"types": "dist/plugin.d.ts",
"files": [
"dist/*"
],
"keywords": [
"a11y",
"accessibility",
"chart.js",
"chart",
"dataviz",
"wcag"
],
"repository": {
"type": "git",
"url": "https://github.com/julianna-langston/chartjs-plugin-a11y-legend"
},
"bugs": {
"url": "https://github.com/julianna-langston/chartjs-plugin-a11y-legend/issues"
},
"license": "MIT",
"scripts": {
"start": "vite",
"build": "rollup -c rollup.config.js --silent",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"depcheck": "depcheck",
"clean": "rimraf dist coverage"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.0",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.4.0",
"canvas": "^2.11.0",
"cross-env": "^7.0.3",
"depcheck": "^1.4.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.1",
"rollup": "^4.1.4",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
"typescript": "5.7.3",
"vite": "^6.0.3"
},
"dependencies": {
"chart.js": "^4.2.1"
},
"resolutions": {
"semver": "^7.5.2"
}
}