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/omega-core",
|
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
|
|
|
"type": "module",
|
|
|
|
|
"description": "Narrow Omega core/interpreter facade for Matrix membrane consumers",
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/packages/omega-core/src/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"browser": {
|
|
|
|
|
"types": "./dist/packages/omega-core/src/index.browser.d.ts",
|
|
|
|
|
"import": "./dist/index.browser.js"
|
|
|
|
|
},
|
|
|
|
|
"types": "./dist/packages/omega-core/src/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
2026-06-08 19:08:36 +00:00
|
|
|
},
|
|
|
|
|
"./package.json": "./package.json"
|
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
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"src",
|
|
|
|
|
"tsconfig.json"
|
|
|
|
|
],
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@aws-crypto/sha256-js": "5.2.0"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "node build.mjs",
|
|
|
|
|
"verify:imports": "node ../../scripts/verify-exports.mjs",
|
|
|
|
|
"test": "pnpm run verify:imports",
|
|
|
|
|
"type-check": "tsc -p tsconfig.json --noEmit",
|
|
|
|
|
"clean": "rm -rf dist"
|
|
|
|
|
}
|
|
|
|
|
}
|