UNPKG

@shopify/shopify-app-express

Version:

Shopify Express Middleware - to simplify the building of Shopify Apps with Express

66 lines 1.78 kB
{ "name": "@shopify/shopify-app-express", "version": "6.0.4", "description": "Shopify Express Middleware - to simplify the building of Shopify Apps with Express", "engines": { "node": ">=20.0.0" }, "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": "^12.2.0", "@shopify/shopify-app-session-storage": "^4.0.4", "@shopify/shopify-app-session-storage-memory": "^5.0.4", "express": "^4.21.2", "compare-versions": "^6.1.1" }, "devDependencies": { "@types/compression": "^1.8.1", "@types/express": "^4.17.21", "supertest": "^7.1.3", "jose": "^5.9.6" }, "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" } }