-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 957 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 957 Bytes
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
{
"name": "chartkick",
"version": "5.0.1",
"description": "Create beautiful charts with one line of JavaScript",
"homepage": "https://github.com/ankane/chartkick.js",
"license": "MIT",
"author": "Andrew Kane",
"type": "module",
"files": ["dist", "chart.js", "highcharts"],
"main": "./dist/chartkick.js",
"module": "./dist/chartkick.esm.js",
"exports": {
".": {
"require": "./dist/chartkick.js",
"import": "./dist/chartkick.esm.js"
},
"./chart.js": "./chart.js/chart.esm.js",
"./highcharts": "./highcharts/highcharts.esm.js"
},
"devDependencies": {
"@rollup/plugin-buble": "^1.0.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.25.0"
},
"optionalDependencies": {
"chart.js": "4",
"chartjs-adapter-date-fns": ">=3",
"date-fns": ">=2"
},
"scripts": {
"build": "rollup -c"
}
}