{ "name": "shopify-price-updater", "version": "1.0.0", "description": "A Node.js script to bulk update Shopify product prices based on tags", "main": "src/index.js", "scripts": { "start": "node src/index.js", "update": "set OPERATION_MODE=update && node src/index.js", "rollback": "set OPERATION_MODE=rollback && node src/index.js", "debug-tags": "node debug-tags.js", "test": "jest" }, "keywords": [ "shopify", "price-updater", "graphql", "bulk-update" ], "author": "", "license": "MIT", "dependencies": { "@shopify/shopify-api": "^7.7.0", "dotenv": "^16.3.1", "node-fetch": "^3.3.2" }, "devDependencies": { "jest": "^29.7.0" }, "engines": { "node": ">=16.0.0" } }