@anton.andrusenko/shopify-mcp-admin 2.2.1 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-PQKNBYJN.js → chunk-EQUN4XCH.js} +5 -2
- package/dist/{chunk-LMFNHULG.js → chunk-RBXQOPVF.js} +758 -50
- package/dist/dashboard/assets/index-ClITn1me.css +1 -0
- package/dist/dashboard/assets/index-Cvo1L2xM.js +126 -0
- package/dist/dashboard/assets/index-Cvo1L2xM.js.map +1 -0
- package/dist/dashboard/index.html +3 -3
- package/dist/dashboard/mcp-icon.svg +29 -31
- package/dist/index.js +781 -440
- package/dist/{mcp-auth-F25V6FEY.js → mcp-auth-CWOWKID3.js} +1 -1
- package/dist/{tools-HVUCP53D.js → tools-BCI3Z2AW.js} +1 -1
- package/package.json +10 -1
- package/dist/dashboard/assets/index-BfNrQS4y.js +0 -120
- package/dist/dashboard/assets/index-BfNrQS4y.js.map +0 -1
- package/dist/dashboard/assets/index-HBHxyHsM.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anton.andrusenko/shopify-mcp-admin",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "MCP server for Shopify Admin API - enables AI agents to manage Shopify stores with 79 tools for products, inventory, collections, content, SEO, metafields, markets & translations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"typecheck": "tsc --noEmit",
|
|
23
23
|
"test": "vitest --run",
|
|
24
24
|
"test:watch": "vitest",
|
|
25
|
+
"test:react": "vitest --run --config vitest.react.config.ts",
|
|
25
26
|
"test:coverage": "vitest run --coverage",
|
|
26
27
|
"test:integration": "vitest run tests/integration/*.test.ts --testTimeout=60000",
|
|
27
28
|
"test:e2e": "playwright test",
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
85
86
|
"@radix-ui/react-hover-card": "^1.1.15",
|
|
86
87
|
"@radix-ui/react-label": "^2.1.8",
|
|
88
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
87
89
|
"@radix-ui/react-progress": "^1.1.8",
|
|
88
90
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
89
91
|
"@radix-ui/react-select": "^2.2.6",
|
|
@@ -96,18 +98,21 @@
|
|
|
96
98
|
"@sentry/node": "^10.29.0",
|
|
97
99
|
"@shopify/shopify-api": "^11.14.1",
|
|
98
100
|
"@tanstack/react-query": "^5.90.11",
|
|
101
|
+
"@tanstack/react-table": "^8.21.3",
|
|
99
102
|
"bcrypt": "^5.1.1",
|
|
100
103
|
"class-variance-authority": "^0.7.1",
|
|
101
104
|
"clsx": "^2.1.1",
|
|
102
105
|
"cmdk": "^1.1.1",
|
|
103
106
|
"cookie-parser": "^1.4.7",
|
|
104
107
|
"cors": "^2.8.5",
|
|
108
|
+
"date-fns": "^4.1.0",
|
|
105
109
|
"express": "^5.1.0",
|
|
106
110
|
"express-rate-limit": "^8.2.1",
|
|
107
111
|
"lucide-react": "^0.555.0",
|
|
108
112
|
"pino": "^9.14.0",
|
|
109
113
|
"prom-client": "^15.1.3",
|
|
110
114
|
"react": "^19.2.1",
|
|
115
|
+
"react-day-picker": "^9.13.0",
|
|
111
116
|
"react-dom": "^19.2.1",
|
|
112
117
|
"react-hook-form": "^7.67.0",
|
|
113
118
|
"react-router-dom": "^7.10.0",
|
|
@@ -122,6 +127,9 @@
|
|
|
122
127
|
"@biomejs/biome": "^1.9.4",
|
|
123
128
|
"@playwright/test": "^1.57.0",
|
|
124
129
|
"@tailwindcss/vite": "^4.1.17",
|
|
130
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
131
|
+
"@testing-library/react": "^16.3.1",
|
|
132
|
+
"@testing-library/user-event": "^14.6.1",
|
|
125
133
|
"@types/bcrypt": "^5.0.2",
|
|
126
134
|
"@types/cookie-parser": "^1.4.10",
|
|
127
135
|
"@types/cors": "^2.8.19",
|
|
@@ -133,6 +141,7 @@
|
|
|
133
141
|
"@vitejs/plugin-react": "^5.1.1",
|
|
134
142
|
"@vitest/coverage-v8": "^3.2.4",
|
|
135
143
|
"autoprefixer": "^10.4.22",
|
|
144
|
+
"jsdom": "^27.3.0",
|
|
136
145
|
"pino-pretty": "^11.3.0",
|
|
137
146
|
"postcss": "^8.5.6",
|
|
138
147
|
"prisma": "^6.0.0",
|