@anton.andrusenko/shopify-mcp-admin 0.2.0 → 0.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/README.md +31 -0
- package/dist/index.js +1081 -681
- package/package.json +12 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anton.andrusenko/shopify-mcp-admin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "MCP server for Shopify Admin API - enables AI agents to manage Shopify stores with 40+ tools for products, inventory, collections, content, and SEO",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,8 +19,17 @@
|
|
|
19
19
|
"typecheck": "tsc --noEmit",
|
|
20
20
|
"test": "vitest --run",
|
|
21
21
|
"test:watch": "vitest",
|
|
22
|
+
"test:coverage": "vitest run --coverage",
|
|
22
23
|
"test:integration": "vitest run tests/integration/*.test.ts --testTimeout=60000",
|
|
23
|
-
"
|
|
24
|
+
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
25
|
+
"inspect:dev": "npx @modelcontextprotocol/inspector npx tsx src/index.ts",
|
|
26
|
+
"inspect:config": "npx @modelcontextprotocol/inspector --config mcp-inspector.json",
|
|
27
|
+
"ci": "npm run lint && npm run typecheck && npm run test && npm run build",
|
|
28
|
+
"version:patch": "npm version patch --no-git-tag-version",
|
|
29
|
+
"version:minor": "npm version minor --no-git-tag-version",
|
|
30
|
+
"version:major": "npm version major --no-git-tag-version",
|
|
31
|
+
"release": "npm run ci && npm publish --access public",
|
|
32
|
+
"prepublishOnly": "npm run ci"
|
|
24
33
|
},
|
|
25
34
|
"keywords": [
|
|
26
35
|
"shopify",
|
|
@@ -63,6 +72,7 @@
|
|
|
63
72
|
"@types/express": "^5.0.5",
|
|
64
73
|
"@types/node": "^22.19.1",
|
|
65
74
|
"@types/supertest": "^6.0.3",
|
|
75
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
66
76
|
"supertest": "^7.1.4",
|
|
67
77
|
"tsup": "^8.5.1",
|
|
68
78
|
"tsx": "^4.20.6",
|