UNPKG

@adobe/aio-commerce-lib-core

Version:

Core utilities for AIO Commerce SDK Libraries

79 lines 2.57 kB
{ "name": "@adobe/aio-commerce-lib-core", "type": "module", "author": "Adobe Inc.", "version": "0.5.1", "private": false, "engines": { "node": ">=20 <=24" }, "license": "Apache-2.0", "description": "Core utilities for AIO Commerce SDK Libraries", "keywords": [ "aio", "adobe-io", "commerce", "adobe-commerce", "adobe-commerce-sdk", "aio-commerce-sdk", "aio-commerce-lib-core", "aio-commerce-sdk-lib-core" ], "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-core" }, "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": { "ansis": "^4.1.0", "valibot": "^1.1.0" }, "devDependencies": { "@aio-commerce-sdk/config-tsdown": "1.0.0", "@aio-commerce-sdk/config-typedoc": "1.0.0", "@aio-commerce-sdk/config-typescript": "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" } }