mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 10:36:10 +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
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "@openclaw/markdown-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"
|
|
},
|
|
"./code-spans": {
|
|
"types": "./dist/code-spans.d.mts",
|
|
"import": "./dist/code-spans.mjs",
|
|
"default": "./dist/code-spans.mjs"
|
|
},
|
|
"./fences": {
|
|
"types": "./dist/fences.d.mts",
|
|
"import": "./dist/fences.mjs",
|
|
"default": "./dist/fences.mjs"
|
|
},
|
|
"./frontmatter": {
|
|
"types": "./dist/frontmatter.d.mts",
|
|
"import": "./dist/frontmatter.mjs",
|
|
"default": "./dist/frontmatter.mjs"
|
|
},
|
|
"./ir": {
|
|
"types": "./dist/ir.d.mts",
|
|
"import": "./dist/ir.mjs",
|
|
"default": "./dist/ir.mjs"
|
|
},
|
|
"./render": {
|
|
"types": "./dist/render.d.mts",
|
|
"import": "./dist/render.mjs",
|
|
"default": "./dist/render.mjs"
|
|
},
|
|
"./render-aware-chunking": {
|
|
"types": "./dist/render-aware-chunking.d.mts",
|
|
"import": "./dist/render-aware-chunking.mjs",
|
|
"default": "./dist/render-aware-chunking.mjs"
|
|
},
|
|
"./tables": {
|
|
"types": "./dist/tables.d.mts",
|
|
"import": "./dist/tables.mjs",
|
|
"default": "./dist/tables.mjs"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/types.d.mts",
|
|
"import": "./dist/types.mjs",
|
|
"default": "./dist/types.mjs"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@openclaw/normalization-core": "workspace:*",
|
|
"markdown-it": "14.3.0",
|
|
"markdown-it-cjk-friendly": "2.0.2",
|
|
"yaml": "2.9.0"
|
|
}
|
|
}
|