@adobe/aio-commerce-sdk
Version:
Utilities for Adobe Commerce apps deployed in Adobe App Builder.
70 lines • 2.24 kB
JSON
{
"name": "@adobe/aio-commerce-sdk",
"type": "module",
"author": "Adobe Inc.",
"version": "0.4.3",
"private": false,
"engines": {
"node": ">=20 <=24"
},
"license": "Apache-2.0",
"description": "Utilities for Adobe Commerce apps deployed in Adobe App Builder.",
"keywords": [
"aio",
"adobe-io",
"commerce",
"adobe-commerce",
"adobe-commerce-sdk",
"aio-commerce-sdk"
],
"bugs": {
"url": "https://github.com/adobe/aio-commerce-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aio-commerce-sdk.git"
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/es/index.js",
"types": "./dist/cjs/index.d.cts",
"exports": {
"./*": {
"import": {
"types": "./dist/es/*.d.ts",
"default": "./dist/es/*.js"
},
"require": {
"types": "./dist/cjs/*.d.cts",
"default": "./dist/cjs/*.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"package.json",
"CHANGELOG.md",
"README.md"
],
"dependencies": {
"@adobe/aio-commerce-lib-auth": "0.3.4",
"@adobe/aio-commerce-lib-core": "0.4.1"
},
"devDependencies": {
"@aio-commerce-sdk/config-tsdown": "1.0.0",
"@aio-commerce-sdk/config-typescript": "1.0.0"
},
"sideEffects": false,
"scripts": {
"build": "tsdown",
"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.'"
}
}