@commercelayer/organization-config
Version:
Organization config utils for extracting config by market
64 lines • 1.61 kB
JSON
{
"name": "@commercelayer/organization-config",
"version": "2.8.4",
"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": "^2.3.9",
"@types/lodash": "^4.17.21",
"@types/node": "^24.10.1",
"deepmerge": "^4.3.1",
"deepmerge-ts": "^7.1.5",
"json-schema-to-typescript": "^15.0.4",
"lodash": "^4.17.21",
"tsup": "^8.5.1",
"type-fest": "^5.3.1",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
},
"dependencies": {
"@commercelayer/js-auth": "^7.2.0",
"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": "pnpx jsr publish",
"generate:types": "node src/schema/generate.js && pnpm run lint:fix"
}
}