@cli4ai/shopify 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.
Files changed (3) hide show
  1. package/cli4ai.json +2 -2
  2. package/package.json +1 -1
  3. package/run.ts +1 -1
package/cli4ai.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "shopify",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Shopify management tools for orders, products, inventory, and content",
5
5
  "author": "cliforai",
6
6
  "license": "MIT",
7
7
  "entry": "run.ts",
8
- "runtime": "bun",
8
+ "runtime": "node",
9
9
  "keywords": ["shopify", "ecommerce", "orders", "inventory", "seo", "blog"],
10
10
  "commands": {
11
11
  "orders": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cli4ai/shopify",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Shopify management tools for orders, products, inventory, and content",
5
5
  "author": "cliforai",
6
6
  "license": "MIT",
package/run.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env npx tsx
2
2
  import { cli, output, outputError, withErrorHandling, parseJson } from '@cli4ai/lib/cli.ts';
3
3
 
4
4
  const SHOP = process.env.SHOPIFY_SHOP;