UNPKG

@commercelayer/organization-config

Version:

Organization config utils for extracting config by market

63 lines 1.55 kB
{ "name": "@commercelayer/organization-config", "version": "2.3.0", "description": "Organization config utils for extracting config by market", "author": { "name": "Matteo Alessani", "email": "matteo@commercelayer.io" }, "license": "MIT", "type": "module", "files": [ "dist" ], "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "engines": { "node": ">=18", "pnpm": ">=7" }, "keywords": [ "react", "commercelayer" ], "repository": { "type": "git", "url": "https://github.com/commercelayer/common-utils.git" }, "bugs": { "url": "https://github.com/commercelayer/common-utils/issues" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/lodash": "^4.17.16", "@types/node": "^22.15.16", "deepmerge": "^4.3.1", "deepmerge-ts": "^7.1.5", "json-schema-to-typescript": "^15.0.4", "lodash": "^4.17.21", "tsup": "^8.4.0", "type-fest": "^4.41.0", "typescript": "^5.8.3", "vitest": "^3.1.3" }, "dependencies": { "merge-anything": "^5.1.7" }, "scripts": { "lint": "pnpm biome check src", "lint:fix": "pnpm biome check src --write", "test": "pnpm run lint && vitest run --silent", "test:verbose": "pnpm run lint && vitest run --silent=false", "bench": "vitest bench", "build": "tsup", "jsr:publish": "npx jsr publish", "generate:types": "node src/schema/generate.js" } }