UNPKG

@adobe/aio-commerce-sdk

Version:

Meta-package re-exporting Adobe Commerce SDK libraries for Adobe App Builder applications.

172 lines 4.97 kB
{ "name": "@adobe/aio-commerce-sdk", "type": "module", "author": "Adobe Inc.", "version": "1.4.2", "private": false, "engines": { "node": ">=22 <=24" }, "license": "Apache-2.0", "description": "Meta-package re-exporting Adobe Commerce SDK libraries for Adobe App Builder applications.", "keywords": [ "aio", "adobe-io", "commerce", "adobe-commerce", "adobe-commerce-sdk", "aio-commerce-sdk", "app-builder" ], "bugs": { "url": "https://github.com/adobe/aio-commerce-sdk/issues" }, "repository": { "type": "git", "url": "git+https://github.com/adobe/aio-commerce-sdk.git" }, "exports": { "./api": { "import": { "types": "./dist/es/api/index.d.mts", "default": "./dist/es/api/index.mjs" }, "require": { "types": "./dist/cjs/api/index.d.cts", "default": "./dist/cjs/api/index.cjs" } }, "./api/*": { "import": { "types": "./dist/es/api/*.d.mts", "default": "./dist/es/api/*.mjs" }, "require": { "types": "./dist/cjs/api/*.d.cts", "default": "./dist/cjs/api/*.cjs" } }, "./events/*": { "import": { "types": "./dist/es/events/*.d.mts", "default": "./dist/es/events/*.mjs" }, "require": { "types": "./dist/cjs/events/*.d.cts", "default": "./dist/cjs/events/*.cjs" } }, "./core/*": { "import": { "types": "./dist/es/core/*.d.mts", "default": "./dist/es/core/*.mjs" }, "require": { "types": "./dist/cjs/core/*.d.cts", "default": "./dist/cjs/core/*.cjs" } }, "./webhooks/*": { "import": { "types": "./dist/es/webhooks/*.d.mts", "default": "./dist/es/webhooks/*.mjs" }, "require": { "types": "./dist/cjs/webhooks/*.d.cts", "default": "./dist/cjs/webhooks/*.cjs" } }, "./admin-ui/web": { "browser": { "types": "./dist/es/admin-ui/web.d.mts", "default": "./dist/es/admin-ui/web.mjs" }, "import": { "types": "./dist/es/admin-ui/web.d.mts", "default": "./dist/es/admin-ui/web.mjs" } }, "./admin-ui/*": { "import": { "types": "./dist/es/admin-ui/*.d.mts", "default": "./dist/es/admin-ui/*.mjs" }, "require": { "types": "./dist/cjs/admin-ui/*.d.cts", "default": "./dist/cjs/admin-ui/*.cjs" } }, "./*": { "import": { "types": "./dist/es/*.d.mts", "default": "./dist/es/*.mjs" }, "require": { "types": "./dist/cjs/*.d.cts", "default": "./dist/cjs/*.cjs" } }, "./package.json": "./package.json" }, "files": [ "dist", "package.json", "CHANGELOG.md", "README.md" ], "dependencies": { "type-fest": "^5.0.0", "@adobe/aio-commerce-lib-auth": "1.1.3", "@adobe/aio-commerce-lib-core": "1.2.0", "@adobe/aio-commerce-lib-api": "1.3.1", "@adobe/aio-commerce-lib-admin-ui": "1.0.1", "@adobe/aio-commerce-lib-events": "1.3.1", "@adobe/aio-commerce-lib-webhooks": "1.2.1" }, "peerDependencies": { "@react-spectrum/s2": "^1.5.1", "react": "^19.2.7", "react-dom": "^19.2.7" }, "peerDependenciesMeta": { "@react-spectrum/s2": { "optional": true }, "react": { "optional": true }, "react-dom": { "optional": true } }, "devDependencies": { "@react-spectrum/s2": "^1.5.1", "@types/react": "^19.2.17", "@types/react-dom": "^19.2.3", "react": "^19.2.7", "react-dom": "^19.2.7", "typescript": "^6.0.0", "@aio-commerce-sdk/config-tsdown": "1.0.1", "@aio-commerce-sdk/config-typescript": "1.0.0" }, "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" }, "sideEffects": false, "scripts": { "build": "tsdown", "pack": "pnpm pack", "publint": "publint", "assist": "biome check --formatter-enabled=false --linter-enabled=false --assist-enabled=true --no-errors-on-unmatched", "assist:apply": "biome check --write --formatter-enabled=false --linter-enabled=false --assist-enabled=true --no-errors-on-unmatched", "check:ci": "biome ci --formatter-enabled=true --linter-enabled=true --assist-enabled=true --no-errors-on-unmatched", "code:fix": "pnpm run lint:fix && pnpm run assist:apply && pnpm run format && pnpm run format:markdown", "format": "biome format --write --no-errors-on-unmatched", "format:markdown": "prettier --no-error-on-unmatched-pattern --write '**/*.md' \"!**/{CODE_OF_CONDUCT.md,COPYRIGHT,LICENSE,SECURITY.md,CONTRIBUTING.md}\"", "format:check": "biome format --no-errors-on-unmatched", "lint": "biome lint --no-errors-on-unmatched", "lint:fix": "biome lint --write --no-errors-on-unmatched", "typecheck": "tsc --noEmit && echo '✅ No type errors found.'" } }