- Updated all package.json name fields and dependency references - Updated all TypeScript/JavaScript imports - Updated .woodpecker/publish.yml filters and registry paths - Updated tools/install.sh scope default - Updated .npmrc registry paths (worktree + host) - Enhanced update-checker.ts with checkForAllUpdates() multi-package support - Updated CLI update command to show table of all packages - Added KNOWN_PACKAGES, formatAllPackagesTable, getInstallAllCommand - Marked checkForUpdate() with @deprecated JSDoc Closes #391
28 lines
692 B
JSON
28 lines
692 B
JSON
{
|
|
"name": "@mosaicstack/oc-framework-plugin",
|
|
"version": "0.0.2",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.mosaicstack.dev/mosaic/mosaic-stack.git",
|
|
"directory": "plugins/mosaic-framework"
|
|
},
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"description": "Injects Mosaic framework rails, runtime contract, and active mission context into all OpenClaw agent sessions and ACP subagent spawns.",
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./src/index.ts"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"openclaw": "*"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://git.mosaicstack.dev/api/packages/mosaic/npm/",
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|