From 0bccdf09b7ae7257591a964e6a05a9ce5cb6751d Mon Sep 17 00:00:00 2001 From: Erkan Demiralay Date: Thu, 16 Mar 2023 20:04:43 +0100 Subject: [PATCH] - add missing uuid dependency - fix typo in package.json command - bump version --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1ad391a..146eda5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue3-plotly", - "version": "0.0.5", + "version": "0.0.6", "description": "", "main": "dist/library.js", "module": "dist/library.mjs", @@ -10,7 +10,7 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "rollup -c", - "deplot": "bash deploy.sh", + "deploy": "bash deploy.sh", "docs:dev": "vuepress dev docs", "docs:build": "vuepress build docs" }, @@ -42,6 +42,7 @@ "vuepress": "^1.9.7" }, "dependencies": { - "plotly.js-dist": "^2.12.1" + "plotly.js-dist": "^2.12.1", + "uuid": "^9.0.0" } }