UNPKG

@shopify/shopify-app-remix

Version:

Shopify Remix - to simplify the building of Shopify Apps with Remix

123 lines 3.78 kB
{ "name": "@shopify/shopify-app-remix", "version": "4.0.5", "description": "Shopify Remix - to simplify the building of Shopify Apps with Remix", "engines": { "node": ">=20.10.0" }, "repository": { "type": "git", "url": "git+https://github.com/Shopify/shopify-app-js.git", "directory": "packages/apps/shopify-app-remix" }, "bugs": { "url": "https://github.com/Shopify/shopify-app-js/issues" }, "homepage": "https://github.com/Shopify/shopify-app-js/tree/main/packages/apps/shopify-app-remix", "author": "Shopify Inc.", "license": "MIT", "main": "./dist/cjs/server/index.js", "module": "./dist/esm/server/index.mjs", "types": "./dist/ts/server/index.d.ts", "exports": { "./adapters/*": { "types": "./dist/ts/server/adapters/*/index.d.ts", "require": "./dist/cjs/server/adapters/*/index.js", "import": "./dist/esm/server/adapters/*/index.mjs", "default": "./dist/cjs/server/adapters/*/index.js" }, "./server/adapters/*": { "types": "./dist/ts/server/adapters/*/index.d.ts", "require": "./dist/cjs/server/adapters/*/index.js", "import": "./dist/esm/server/adapters/*/index.mjs", "default": "./dist/cjs/server/adapters/*/index.js" }, "./server": { "types": "./dist/ts/server/index.d.ts", "require": "./dist/cjs/server/index.js", "import": "./dist/esm/server/index.mjs", "default": "./dist/cjs/server/index.js" }, "./react": { "types": "./dist/ts/react/index.d.ts", "require": "./dist/cjs/react/index.js", "import": "./dist/esm/react/index.mjs", "default": "./dist/cjs/react/index.js" }, "./test-helpers": { "types": "./dist/ts/server/test-helpers/index.d.ts", "require": "./dist/cjs/server/test-helpers/index.js", "import": "./dist/esm/server/test-helpers/index.mjs", "default": "./dist/cjs/server/test-helpers/index.js" } }, "publishConfig": { "access": "public" }, "keywords": [ "shopify", "javascript", "typescript", "remix", "app", "graphql", "webhook", "Admin API", "Storefront API" ], "devDependencies": { "@babel/preset-env": "^7.28.0", "@remix-run/node": "^2.16.8", "@remix-run/react": "^2.16.8", "@remix-run/testing": "^2.16.8", "@shopify/generate-docs": "^0.19.5", "@shopify/polaris": "^12.18.0", "@shopify/react-testing": "^6.0.0", "@shopify/shopify-app-session-storage-memory": "^5.0.2", "@types/react": "^19.2.2", "jest-fetch-mock": "^3.0.3" }, "dependencies": { "@remix-run/server-runtime": "^2.16.8", "@shopify/admin-api-client": "^1.1.1", "@shopify/shopify-api": "^12.1.1", "@shopify/shopify-app-session-storage": "^4.0.2", "@shopify/storefront-api-client": "^1.0.9", "compare-versions": "^6.1.1", "isbot": "^5.1.26" }, "peerDependencies": { "@remix-run/node": "*", "@remix-run/react": "*", "@shopify/polaris": "*", "react": "*" }, "peerDependenciesMeta": { "@shopify/polaris": { "optional": true }, "@remix-run/node": { "optional": true } }, "files": [ "dist/*", "!build/**/__tests__", "!tsconfig.tsbuildinfo", "!node_modules" ], "scripts": { "build-docs": "sh docs/build-docs.sh", "validate-docs": "sh ./docs/build-docs.sh isTest && pnpm compare-docs", "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" } }