UNPKG

@shopify/shopify-app-remix

Version:

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

126 lines 3.94 kB
{ "name": "@shopify/shopify-app-remix", "version": "3.8.3", "description": "Shopify Remix - to simplify the building of Shopify Apps with Remix", "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", "rest", "webhook", "Admin API", "Storefront API" ], "devDependencies": { "@remix-run/node": "^2.16.5", "@remix-run/react": "^2.16.5", "@remix-run/testing": "^2.16.5", "@shopify/generate-docs": "^0.16.6", "@shopify/polaris": "^12.18.0", "@shopify/react-testing": "^6.0.0", "@shopify/shopify-app-session-storage-memory": "^4.0.18", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.3.0", "@types/jsonwebtoken": "^9.0.9", "@types/react": "^19.1.2", "@types/semver": "^7.7.0", "@types/testing-library__jest-dom": "^6.0.0", "jest-fetch-mock": "^3.0.3", "jsonwebtoken": "^9.0.2" }, "dependencies": { "@remix-run/server-runtime": "^2.16.5", "@shopify/admin-api-client": "^1.1.0", "@shopify/shopify-api": "^11.13.0", "@shopify/shopify-app-session-storage": "^3.0.18", "@shopify/storefront-api-client": "^1.0.8", "isbot": "^5.1.26", "semver": "^7.7.1" }, "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" } }