@clawpify/skills 1.0.1 → 1.0.2

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/agent.js CHANGED
@@ -97,4 +97,3 @@ export {
97
97
  ShopifyAgent
98
98
  };
99
99
 
100
- export { ShopifyAgent };
package/dist/auth.js CHANGED
@@ -55,4 +55,3 @@ export {
55
55
  createAuthenticatedConfig
56
56
  };
57
57
 
58
- export { getAccessToken, createAuthenticatedConfig };
package/dist/shopify.js CHANGED
@@ -38,4 +38,3 @@ export {
38
38
  ShopifyClient
39
39
  };
40
40
 
41
- export { ShopifyClient, createShopifyClient };
package/dist/skills.js CHANGED
@@ -33,4 +33,3 @@ export {
33
33
  loadSkills
34
34
  };
35
35
 
36
- export { loadSkills };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawpify/skills",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Shopify Agent SDK — query and manage Shopify stores via GraphQL Admin API with AI agents and MCP",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -46,10 +46,11 @@
46
46
  "clawpify"
47
47
  ],
48
48
  "scripts": {
49
- "build": "bun run build:clean && bun run build:js && bun run build:bin && bun run build:types",
49
+ "build": "bun run build:clean && bun run build:js && bun run build:bin && bun run build:fix && bun run build:types",
50
50
  "build:clean": "rm -rf dist",
51
51
  "build:js": "bun build ./src/index.ts ./src/agent.ts ./src/shopify.ts ./src/auth.ts ./src/skills.ts --outdir ./dist --target node --format esm --splitting --external @anthropic-ai/sdk --external @modelcontextprotocol/sdk",
52
52
  "build:bin": "bun build ./src/mcp-server.ts --outdir ./dist --target node --format esm --external @anthropic-ai/sdk --external @modelcontextprotocol/sdk",
53
+ "build:fix": "bun scripts/fix-exports.ts",
53
54
  "build:types": "tsc -p tsconfig.build.json",
54
55
  "prepublishOnly": "bun run build",
55
56
  "start": "bun run examples/server.ts"