@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 +0 -1
- package/dist/auth.js +0 -1
- package/dist/shopify.js +0 -1
- package/dist/skills.js +0 -1
- package/package.json +3 -2
package/dist/agent.js
CHANGED
package/dist/auth.js
CHANGED
package/dist/shopify.js
CHANGED
package/dist/skills.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clawpify/skills",
|
|
3
|
-
"version": "1.0.
|
|
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"
|