From 385a3696991d3f30d88f953fc8f58c39cc45525b Mon Sep 17 00:00:00 2001 From: "John D. Chancey" <139152739+chanceycode@users.noreply.github.com> Date: Thu, 29 May 2025 10:07:59 -0400 Subject: [PATCH] Fix: Add yaakcli to dev dependencies (#9) --- package-lock.json | 74 +++++++++++++++++++++++++++++++++++++++++++++++ package.json | 3 +- 2 files changed, 76 insertions(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index bfb1d1b4..68efc005 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,6 +13,7 @@ }, "devDependencies": { "@types/node": "^22.7.4", + "@yaakapp/cli": "^0.1.5", "jsonpath": "^1.1.1", "typescript": "^5.6.2", "vitest": "^2.0.4", @@ -1022,6 +1023,79 @@ "resolved": "plugins/auth-oauth2", "link": true }, + "node_modules/@yaakapp/cli": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@yaakapp/cli/-/cli-0.1.5.tgz", + "integrity": "sha512-nx9Z8FhVr8afNkeYSDKZJg0PaYlqKQK2f8zj6MykJeeafHdauJ6EuXWXCmAK6uYLjrIaZI0S63tbgFRBq4kqog==", + "dev": true, + "hasInstallScript": true, + "bin": { + "yaakcli": "bin/cli.js" + }, + "optionalDependencies": { + "@yaakapp/cli-darwin-arm64": "0.1.5", + "@yaakapp/cli-darwin-x64": "0.1.5", + "@yaakapp/cli-linux-arm64": "0.1.5", + "@yaakapp/cli-linux-x64": "0.1.5", + "@yaakapp/cli-win32-x64": "0.1.5" + } + }, + "node_modules/@yaakapp/cli-darwin-arm64": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@yaakapp/cli-darwin-arm64/-/cli-darwin-arm64-0.1.5.tgz", + "integrity": "sha512-P66dwLDx8YWw/A9f7NlnsvnAYBwB8uAYu5gu6/dLZLmYAJ/vZ7kPiHuq1d23g4vKcsXPnjx3Djh3E44ACysMWA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@yaakapp/cli-darwin-x64": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@yaakapp/cli-darwin-x64/-/cli-darwin-x64-0.1.5.tgz", + "integrity": "sha512-PrwGW9MVJkx1zO3pCdoQFoP2dyzoczHc/ZddFZ6tLEzJu3eg/rrsDkTZfLL/7h5egjGWZKmeG3osS9uFhBU68A==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@yaakapp/cli-linux-arm64": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@yaakapp/cli-linux-arm64/-/cli-linux-arm64-0.1.5.tgz", + "integrity": "sha512-Pz63GBO1ikVvTKCP5qSZYLZRcepFAd05+UDFnehWsb4c1OKDsFqOMauPzpMPsCkdqsegSUku0Jly2lDfqmW/ig==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@yaakapp/cli-linux-x64": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@yaakapp/cli-linux-x64/-/cli-linux-x64-0.1.5.tgz", + "integrity": "sha512-YuVDWjVkPtm7JzsN8VQ9ZTKcEnS7FnJ00wdaWh7IbgoBong/l2eb9Bhfv7A9Fm33VuHnS9QhlBvDGUazmnV3Mg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@yaakapp/cli-win32-x64": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@yaakapp/cli-win32-x64/-/cli-win32-x64-0.1.5.tgz", + "integrity": "sha512-w8Oo8/tI/T8cat+tZSqk4OoQZuf1epoC5LR7iuIOOPYGrdxEO2kMDe2LZiG3vnE96Zbprvk3zbdBSrVU9y3wSA==", + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@yaakapp/exporter-curl": { "resolved": "plugins/exporter-curl", "link": true diff --git a/package.json b/package.json index a0da177c..33edba00 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "jsonpath": "^1.1.1", "typescript": "^5.6.2", "vitest": "^2.0.4", - "workspaces-run": "^1.0.2" + "workspaces-run": "^1.0.2", + "@yaakapp/cli": "^0.1.5" }, "dependencies": { "@yaakapp/api": "^0.6.0"