UNPKG

@adobe/aio-commerce-lib-auth

Version:

Authentication utilities for Adobe Commerce apps deployed in Adobe App Builder.

79 lines 2.61 kB
{ "name": "@adobe/aio-commerce-lib-auth", "type": "module", "author": "Adobe Inc.", "version": "0.3.4", "private": false, "engines": { "node": ">=20 <=24" }, "license": "Apache-2.0", "description": "Authentication utilities for Adobe Commerce apps deployed in Adobe App Builder.", "keywords": [ "aio", "adobe-io", "commerce", "adobe-commerce", "adobe-ims" ], "bugs": { "url": "https://github.com/adobe/aio-commerce-sdk/issues" }, "repository": { "type": "git", "url": "git+https://github.com/adobe/aio-commerce-sdk.git", "directory": "packages/aio-commerce-lib-auth" }, "main": "./dist/cjs/index.cjs", "module": "./dist/es/index.js", "types": "./dist/cjs/index.d.cts", "exports": { ".": { "import": { "types": "./dist/es/index.d.ts", "default": "./dist/es/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } }, "./package.json": "./package.json" }, "files": [ "dist", "package.json", "CHANGELOG.md", "README.md" ], "dependencies": { "@adobe/aio-lib-ims": "^8.1.0", "ansis": "^4.1.0", "oauth-1.0a": "^2.2.6", "valibot": "^1.1.0", "@adobe/aio-commerce-lib-core": "0.4.1" }, "devDependencies": { "@aio-commerce-sdk/config-typedoc": "1.0.0", "@aio-commerce-sdk/config-typescript": "1.0.0", "@aio-commerce-sdk/config-tsdown": "1.0.0", "@aio-commerce-sdk/config-vitest": "1.0.0" }, "sideEffects": false, "scripts": { "build": "tsdown", "docs": "typedoc && prettier --write '**/*.md'", "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", "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.'", "test": "vitest run --coverage", "test:watch": "vitest --coverage", "test:ui": "vitest --ui" } }