-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
43 lines (43 loc) · 947 Bytes
/
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
{
"name": "vue-chartkick",
"version": "1.1.0",
"description": "Create beautiful JavaScript charts with one line of Vue",
"type": "module",
"main": "./dist/vue-chartkick.js",
"module": "./dist/vue-chartkick.esm.js",
"exports": {
".": {
"require": "./dist/vue-chartkick.js",
"import": "./dist/vue-chartkick.esm.js"
}
},
"scripts": {
"build": "rollup -c",
"lint": "eslint src"
},
"license": "MIT",
"peerDependencies": {
"vue": ">=3.0.0"
},
"authors": [
"ankane"
],
"repository": {
"type": "git",
"url": "https://github.com/ankane/vue-chartkick"
},
"files": [
"dist"
],
"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",
"eslint": "^9.14.0",
"rollup": "^4.25.0"
},
"dependencies": {
"chartkick": ">=3.2.0"
}
}