feat: initial Matrix SDK
Full SDK workspace: core, contracts, sdk, cli, browser-host, browser-kit,
federation, omega-core, oracle, self-healing, strategies, tools, emacs.
Clean extraction from the development monorepo.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-07 15:54:15 -06:00
|
|
|
{
|
|
|
|
|
"name": "@open-matrix/browser-host",
|
2026-06-08 19:08:36 +00:00
|
|
|
"version": "0.1.4",
|
feat: initial Matrix SDK
Full SDK workspace: core, contracts, sdk, cli, browser-host, browser-kit,
federation, omega-core, oracle, self-healing, strategies, tools, emacs.
Clean extraction from the development monorepo.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-07 15:54:15 -06:00
|
|
|
"description": "Browser host shell for Matrix custom elements (extracted from @open-matrix/core during core-decontamination).",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./host": {
|
|
|
|
|
"types": "./dist/host.d.ts",
|
|
|
|
|
"import": "./dist/host.js",
|
|
|
|
|
"default": "./dist/host.js"
|
|
|
|
|
},
|
|
|
|
|
"./recovery": {
|
|
|
|
|
"types": "./dist/recovery.d.ts",
|
|
|
|
|
"import": "./dist/recovery.js",
|
|
|
|
|
"default": "./dist/recovery.js"
|
|
|
|
|
},
|
|
|
|
|
"./app-ready": {
|
|
|
|
|
"types": "./dist/app-ready.d.ts",
|
|
|
|
|
"import": "./dist/app-ready.js",
|
|
|
|
|
"default": "./dist/app-ready.js"
|
|
|
|
|
},
|
|
|
|
|
"./bundle-freshness": {
|
|
|
|
|
"types": "./dist/BundleFreshness.d.ts",
|
|
|
|
|
"import": "./dist/BundleFreshness.js",
|
|
|
|
|
"default": "./dist/BundleFreshness.js"
|
|
|
|
|
},
|
|
|
|
|
"./profile-trace": {
|
|
|
|
|
"types": "./dist/profile-trace.d.ts",
|
|
|
|
|
"import": "./dist/profile-trace.js",
|
|
|
|
|
"default": "./dist/profile-trace.js"
|
|
|
|
|
},
|
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "node build.mjs",
|
|
|
|
|
"test": "node --import tsx --test src/__tests__/*.spec.ts",
|
|
|
|
|
"test:ci": "pnpm run test",
|
|
|
|
|
"type-check": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"src",
|
|
|
|
|
"dist",
|
|
|
|
|
"package.json",
|
|
|
|
|
"CONTRACT.md",
|
|
|
|
|
"matrix.control-surface.contract.json"
|
|
|
|
|
],
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@open-matrix/contracts": "workspace:*",
|
|
|
|
|
"@open-matrix/federation": "workspace:*",
|
|
|
|
|
"@open-matrix/core": "workspace:*"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"tsx": "^4.0.0",
|
|
|
|
|
"typescript": "^5.7.0"
|
|
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20"
|
|
|
|
|
}
|
|
|
|
|
}
|