From edcdbea273210ce69ae4ab2ee7b486c42bc32cf6 Mon Sep 17 00:00:00 2001 From: Haroune Mohammedi Date: Thu, 18 Jan 2024 15:26:42 +0100 Subject: [PATCH] fix: move abiwan from dev dependencies to regular dependencies Otherwise abiwan is not installed when starknet.js is installed and nothing works as reported here: https://discord.com/channels/793094838509764618/927918707613786162/1197169770731147316 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 04363cf8a..766f07e09 100644 --- a/package.json +++ b/package.json @@ -67,8 +67,6 @@ "@types/url-join": "^4.0.1", "@typescript-eslint/eslint-plugin": "^5.28.0", "@typescript-eslint/parser": "^5.28.0", - "abi-wan-kanabi": "^1.0.3", - "abi-wan-kanabi-v2": "npm:abi-wan-kanabi@^2.1.0", "ajv": "^8.12.0", "ajv-keywords": "^5.1.0", "eslint": "^8.17.0", @@ -97,7 +95,9 @@ "isomorphic-fetch": "^3.0.0", "lossless-json": "^2.0.8", "pako": "^2.0.4", - "url-join": "^4.0.1" + "url-join": "^4.0.1", + "abi-wan-kanabi": "^1.0.3", + "abi-wan-kanabi-v2": "npm:abi-wan-kanabi@^2.1.0" }, "lint-staged": { "*.ts": "eslint --cache --fix",