mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 11:46:07 +00:00
* refactor(normalization): consolidate string helpers * refactor(normalization): consolidate agent ids * refactor(paths): consolidate user path resolution * refactor(gateway): preserve transcript helper facade * fix(normalization): align helper build aliases * fix(memory): keep helper import line neutral * chore(plugin-sdk): align consolidated helper surface * refactor(normalization): reuse lowercase string helper * refactor(normalization): reuse record guard * refactor(normalization): share surrogate boundary helper * refactor(agents): share token estimate constant * refactor(memory): distinguish standalone helper contracts * refactor(normalization): share error cause formatter * refactor(config): distinguish eligibility predicates * refactor(plugins): share registry state symbol * refactor(cli): reuse outbound dependency adapter * refactor(cron): distinguish positive duration parser * fix(gateway): keep transcript helper private * fix(paths): preserve public helper status * refactor(channels): reuse registry normalizer * refactor(agents): reuse agent core runtime facade * refactor(auth): reuse locked profile upsert * refactor(records): distinguish trap-safe guard * refactor(migrations): distinguish sync directory helper * test(plugins): drop stale duration alias expectations * fix(channels): remove stale registry import * chore(plugin-sdk): refresh helper API baseline * fix(memory): keep renamed helpers private * fix(plugins): keep registry state key private * fix(plugin-sdk): tighten wildcard surface budget * chore(plugin-sdk): refresh rebased helper API baseline
72 lines
2.2 KiB
JSON
72 lines
2.2 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"
|
|
},
|
|
"./agent-id": {
|
|
"types": "./dist/agent-id.d.mts",
|
|
"import": "./dist/agent-id.mjs",
|
|
"default": "./dist/agent-id.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"
|
|
},
|
|
"./expect": {
|
|
"types": "./dist/expect.d.mts",
|
|
"import": "./dist/expect.mjs",
|
|
"default": "./dist/expect.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"
|
|
},
|
|
"./result": {
|
|
"types": "./dist/result.d.mts",
|
|
"import": "./dist/result.mjs",
|
|
"default": "./dist/result.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"
|
|
},
|
|
"./utf16-slice": {
|
|
"types": "./dist/utf16-slice.d.mts",
|
|
"import": "./dist/utf16-slice.mjs",
|
|
"default": "./dist/utf16-slice.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown src/index.ts src/agent-id.ts src/boolean-coercion.ts src/error-coercion.ts src/expect.ts src/number-coercion.ts src/record-coerce.ts src/result.ts src/string-coerce.ts src/string-normalization.ts src/utf16-slice.ts --no-config --platform node --format esm --dts --out-dir dist --clean"
|
|
}
|
|
}
|