From 95558a9dfc9d2f8e73cfe61b65b0b33a37a1dbe9 Mon Sep 17 00:00:00 2001 From: PO Boisvert Date: Tue, 30 Apr 2024 08:23:15 -0400 Subject: [PATCH] Add: information --- README.md | 11 ++++++++--- package.json | 15 ++++++++++++++- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9a0231b..bef6265 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,16 @@ A continuation of https://github.com/fraserxu/react-chartist. Feel free to push npm install --save next-chartist ``` +or in \_app or layout.tsx/jsx + +```bash + +``` + ## Usage ``` - ``` ```jsx @@ -29,8 +34,8 @@ class Example extends Component { if (data.statistics) { var dataChart = { - labels: ["Name"], - series: ["James"] + labels: ["Speed"], + series: [1000] } var options = { diff --git a/package.json b/package.json index 688aaf5..9ed29b1 100644 --- a/package.json +++ b/package.json @@ -52,5 +52,18 @@ ], "dependencies": { "chartist": "^1.3.0" - } + }, + "keywords": [ + "chart", + "chartist", + "npm", + "ui libraries", + "nextjs", + "plot", + "plotting" + ], + "bugs": { + "url": "https://github.com/poboisvert/next-chartist/issues" + }, + "homepage": "https://github.com/poboisvert/next-chartist#readme" }