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
|
|
|
{
|
2026-06-08 00:21:26 +00:00
|
|
|
"name": "@open-matrix/sdk",
|
2026-06-08 19:08:36 +00:00
|
|
|
"version": "0.1.4",
|
2026-06-08 00:21:26 +00:00
|
|
|
"description": "Public Matrix actor SDK facade for package authors.",
|
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",
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"README.md",
|
|
|
|
|
"CONTRACT.md",
|
|
|
|
|
"package.json"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc -p tsconfig.json",
|
|
|
|
|
"test": "node --input-type=module -e \"const sdk = await import('./dist/index.js'); if (typeof sdk.MatrixActor !== 'function') throw new Error('MatrixActor export missing');\"",
|
|
|
|
|
"type-check": "tsc -p tsconfig.json --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@open-matrix/browser-host": "workspace:*",
|
|
|
|
|
"@open-matrix/browser-kit": "workspace:*",
|
|
|
|
|
"@open-matrix/contracts": "workspace:*",
|
|
|
|
|
"@open-matrix/core": "workspace:*",
|
|
|
|
|
"@open-matrix/federation": "workspace:*",
|
|
|
|
|
"@open-matrix/omega-core": "workspace:*"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"typescript": "^5.7.0"
|
|
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20"
|
|
|
|
|
}
|
|
|
|
|
}
|