{
  "name": "@shopify/shopify-app-express",
  "version": "5.0.17",
  "description": "Shopify Express Middleware - to simplify the building of Shopify Apps with Express",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Shopify/shopify-app-js.git",
    "directory": "packages/apps/shopify-app-express"
  },
  "bugs": {
    "url": "https://github.com/Shopify/shopify-app-js/issues"
  },
  "homepage": "https://github.com/Shopify/shopify-app-js/tree/main/packages/apps/shopify-app-express",
  "author": "Shopify Inc.",
  "license": "MIT",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/ts/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "shopify",
    "node",
    "express",
    "app",
    "graphql",
    "rest",
    "webhook",
    "Admin API",
    "Storefront API"
  ],
  "dependencies": {
    "@shopify/shopify-api": "^11.12.0",
    "@shopify/shopify-app-session-storage": "^3.0.17",
    "@shopify/shopify-app-session-storage-memory": "^4.0.17",
    "cookie-parser": "^1.4.7",
    "express": "^4.21.2",
    "semver": "^7.7.1"
  },
  "devDependencies": {
    "@types/compression": "^1.7.5",
    "@types/cookie-parser": "^1.4.8",
    "@types/express": "^4.17.21",
    "@types/jsonwebtoken": "^9.0.9",
    "@types/semver": "^7.7.0",
    "jsonwebtoken": "^9.0.2"
  },
  "files": [
    "dist/*",
    "!tsconfig.tsbuildinfo",
    "!node_modules"
  ],
  "scripts": {
    "lint": "eslint . --ext .js,.ts",
    "build": "pnpm rollup && pnpm tsc -p ./tsconfig.build.json",
    "tsc": "tsc",
    "test": "jest",
    "test:ci": "pnpm test",
    "rollup": "rollup -c rollup.config.js --bundleConfigAsCjs",
    "clean": "rimraf .rollup.cache dist",
    "changeset": "changeset",
    "version": "changeset version",
    "release": "pnpm build && changeset publish"
  }
}