UNPKG

@shopify/shopify-app-express

Version:

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

72 lines 1.88 kB
{ "name": "@shopify/shopify-app-express", "version": "7.0.1", "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": "^13.1.0", "@shopify/shopify-app-session-storage": "^5.0.1", "@shopify/shopify-app-session-storage-memory": "^6.0.1", "compare-versions": "^6.1.1" }, "peerDependencies": { "express": "^5.0.0" }, "devDependencies": { "@types/compression": "^1.8.1", "@types/express": "^5.0.6", "express": "^5.2.1", "supertest": "^7.2.2", "jose": "^5.9.6" }, "files": [ "dist/*", "src", "!src/**/__tests__", "!src/**/*.test.ts", "!tsconfig.tsbuildinfo", "!node_modules" ], "scripts": { "lint": "eslint .", "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" } }