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/cli",
|
2026-06-08 19:08:36 +00:00
|
|
|
"version": "0.1.6",
|
2026-06-08 04:18:18 +00:00
|
|
|
"description": "Matrix package-author CLI.",
|
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",
|
|
|
|
|
"bin": {
|
2026-06-08 04:18:18 +00:00
|
|
|
"matrix": "./dist/index.js"
|
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": [
|
2026-06-08 04:18:18 +00:00
|
|
|
"dist/",
|
|
|
|
|
"README.md"
|
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
|
|
|
],
|
|
|
|
|
"scripts": {
|
2026-06-08 04:18:18 +00:00
|
|
|
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && esbuild src/index.ts --bundle --platform=node --target=node22 --format=esm --outfile=dist/index.js --external:node:* --external:commander --external:nats --log-level=warning",
|
|
|
|
|
"type-check": "tsc -p tsconfig.json --noEmit",
|
|
|
|
|
"test": "node -e \"const{globSync}=require('glob');const{execFileSync}=require('child_process');const files=globSync('tests/unit/*.spec.ts');if(!files.length){console.error('No test files found');process.exit(1)}execFileSync(process.execPath,['--import','tsx','--test',...files],{stdio:'inherit'})\""
|
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
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-06-08 04:18:18 +00:00
|
|
|
"@open-matrix/contracts": "workspace:*",
|
|
|
|
|
"@open-matrix/core": "workspace:*",
|
|
|
|
|
"@open-matrix/federation": "workspace:*",
|
|
|
|
|
"commander": "^11.0.0",
|
|
|
|
|
"nats": "^2.29.3"
|
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
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^25.0.10",
|
2026-06-08 04:18:18 +00:00
|
|
|
"esbuild": "^0.27.3",
|
|
|
|
|
"glob": "^13.0.6",
|
|
|
|
|
"tsx": "^4.15.6",
|
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
|
|
|
"typescript": "^5.7.0"
|
|
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"engines": {
|
2026-06-08 04:18:18 +00:00
|
|
|
"node": ">=22"
|
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
|
|
|
}
|
|
|
|
|
}
|