mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-03 18:44:02 +00:00
Extract shared normalization/coercion helpers into private @openclaw/normalization-core workspace package while preserving existing plugin SDK helper subpaths.\n\nAlso keeps direct normalization-core imports internal, wires UI/build/loader resolution, and replaces the slow PR network CodeQL lane with a fast added-line boundary scan while retaining full CodeQL for scheduled/manual runs.\n\nVerification: local moved tests, plugin SDK boundary tests, extension loader tests, agents-support shard, UI build/test, build artifacts, lint, workflow guards, autoreview, and GitHub CI passed on PR head 963d893715.
42 lines
1.2 KiB
JSON
42 lines
1.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"
|
|
},
|
|
"./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/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"
|
|
}
|
|
}
|