mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-06 05:43:35 +00:00
* refactor(shared): add markdown code span/fence helpers and migrate seven call sites * refactor(normalization-core): add canonical toErrorObject and migrate six copies * refactor: consolidate byte-identical helper pairs onto owner modules * refactor: reuse canonical path and token helpers in session tools and credentials * refactor(packages): dedupe compaction summarization tail and session dir parsing * fix(security): keep missing extensions dir silent in shared plugin dir lister * refactor: reuse media-core chunk reader and shared dreaming session key helper * fix(plugins): register error-coercion subpath in sdk alias table * chore(plugin-sdk): re-pin callable export count after rebase * chore(plugin-sdk): re-pin callable export count after rebase
52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "@openclaw/normalization-core",
|
|
"version": "0.0.0-private",
|
|
"private": true,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"import": "./dist/index.mjs",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./boolean-coercion": {
|
|
"types": "./dist/boolean-coercion.d.mts",
|
|
"import": "./dist/boolean-coercion.mjs",
|
|
"default": "./dist/boolean-coercion.mjs"
|
|
},
|
|
"./error-coercion": {
|
|
"types": "./dist/error-coercion.d.mts",
|
|
"import": "./dist/error-coercion.mjs",
|
|
"default": "./dist/error-coercion.mjs"
|
|
},
|
|
"./number-coercion": {
|
|
"types": "./dist/number-coercion.d.mts",
|
|
"import": "./dist/number-coercion.mjs",
|
|
"default": "./dist/number-coercion.mjs"
|
|
},
|
|
"./record-coerce": {
|
|
"types": "./dist/record-coerce.d.mts",
|
|
"import": "./dist/record-coerce.mjs",
|
|
"default": "./dist/record-coerce.mjs"
|
|
},
|
|
"./string-coerce": {
|
|
"types": "./dist/string-coerce.d.mts",
|
|
"import": "./dist/string-coerce.mjs",
|
|
"default": "./dist/string-coerce.mjs"
|
|
},
|
|
"./string-normalization": {
|
|
"types": "./dist/string-normalization.d.mts",
|
|
"import": "./dist/string-normalization.mjs",
|
|
"default": "./dist/string-normalization.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown src/index.ts src/boolean-coercion.ts src/error-coercion.ts src/number-coercion.ts src/record-coerce.ts src/string-coerce.ts src/string-normalization.ts --no-config --platform node --format esm --dts --out-dir dist --clean"
|
|
}
|
|
}
|