From 1832be2f8445ca80a4aeb245b25fe2f5597d505e Mon Sep 17 00:00:00 2001 From: Nicolas Barraud Date: Mon, 31 Mar 2025 08:15:42 -0400 Subject: [PATCH] Update package.json --- package.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index c72b43b..84f3210 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,8 @@ "scripts": { "dev": "concurrently \"cd client && npm run dev\" \"cd server && npm run dev\"", "dev:windows": "concurrently \"cd client && npm run dev\" \"cd server && npm run dev:windows\"", + "test": "npm run prettier-check && cd client && npm test", + "test:cli": "cd bin && npm run test", "build-bin": "cd bin && npm run build", "build-server": "cd server && npm run build", "build-client": "cd client && npm run build", @@ -38,8 +40,8 @@ "start": "node ./bin/cli.js", "prepare": "npm run build", "prettier-fix": "prettier --write .", - "publish-all": "npm publish --workspaces --access public && npm publish --access public", - "test:cli": "cd bin && npm run test" + "prettier-check": "prettier --check .", + "publish-all": "npm publish --workspaces --access public && npm publish --access public" }, "dependencies": { "@modelcontextprotocol/inspector-bin": "0.7.0", @@ -60,4 +62,4 @@ "prettier": "3.3.3", "typescript": "^5.4.2" } -} \ No newline at end of file +}