hivecast-sdk/packages/sdk/package.json
hypnotranz 1a0419dc0c 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

44 lines
1.2 KiB
JSON

{
"name": "@open-matrix/sdk",
"version": "0.1.0",
"description": "Public Matrix actor SDK facade for package authors.",
"type": "module",
"private": false,
"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"
}
}