-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "react-chartkick",
"version": "0.5.3",
"description": "Create beautiful JavaScript charts with one line of React",
"type": "module",
"main": "./dist/react-chartkick.js",
"module": "./dist/react-chartkick.esm.js",
"exports": {
".": {
"require": "./dist/react-chartkick.js",
"import": "./dist/react-chartkick.esm.js"
}
},
"scripts": {
"build": "rollup -c",
"lint": "eslint src"
},
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"authors": [
"ankane"
],
"repository": {
"type": "git",
"url": "https://github.com/ankane/react-chartkick"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@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",
"eslint": "^9.14.0",
"rollup": "^4.25.0"
},
"dependencies": {
"chartkick": ">=4.0.0"
}
}