44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "@open-matrix/hivecast-sdk",
|
|
"version": "0.1.0",
|
|
"description": "Public HiveCast actor SDK facade for package authors.",
|
|
"type": "module",
|
|
"private": true,
|
|
"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"
|
|
}
|
|
}
|