-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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
{
"name": "chartjs-plugin-chart2music",
"version": "0.6.0",
"type": "module",
"description": "Chart.js plugin for Chart2Music. Turns chart.js charts into music so the blind can hear data.",
"main": "dist/plugin.js",
"module": "dist/plugin.mjs",
"exports": {
"import": "./dist/plugin.mjs",
"require": "./dist/plugin.cjs"
},
"types": "dist/plugin.d.ts",
"files": [
"dist/*"
],
"keywords": [
"a11y",
"accessibility",
"chart.js",
"chart",
"dataviz",
"screen reader",
"sonification"
],
"repository": {
"type": "git",
"url": "https://github.com/julianna-langston/chartjs2music"
},
"bugs": {
"url": "https://github.com/julianna-langston/chartjs2music/issues"
},
"license": "MIT",
"scripts": {
"start": "vite",
"build": "rollup -c rollup.config.js --silent && yarn build-cjs",
"build-cjs": "babel ./dist/plugin.mjs --out-file ./dist/plugin.cjs",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"depcheck": "depcheck",
"clean": "rimraf dist coverage",
"prepack": "npm run clean && npm run build"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.7",
"@babel/plugin-transform-modules-commonjs": "7.26.3",
"@babel/preset-env": "7.26.7",
"@rollup/plugin-typescript": "12.1.2",
"@sgratzl/chartjs-chart-boxplot": "4.4.4",
"@types/jest": "29.5.14",
"canvas": "3.1.0",
"chartjs-adapter-luxon": "1.3.1",
"chartjs-chart-wordcloud": "4.4.4",
"chartjs-plugin-a11y-legend": "0.2.0",
"cross-env": "7.0.3",
"depcheck": "1.4.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"luxon": "3.5.0",
"rollup": "4.32.1",
"rollup-plugin-copy": "3.5.0",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
"typescript": "5.7.3",
"vite": "6.2.0"
},
"dependencies": {
"chart.js": "4.4.7",
"chart2music": "1.18.0"
}
}