@renderx-plugins/host-sdk
Version:
Host SDK for RenderX plugins - provides conductor, event routing, and component mapping APIs
72 lines (65 loc) • 2.99 kB
JSON
{
"name": "@renderx-plugins/host-sdk",
"version": "1.0.4-rc.0",
"type": "module",
"description": "Host SDK for RenderX plugins - provides conductor, event routing, and component mapping APIs",
"keywords": [
"renderx",
"plugin",
"sdk",
"host",
"conductor",
"component-mapping"
],
"license": "MIT",
"author": "BPM Software Solutions",
"repository": {
"type": "git",
"url": "https://github.com/BPMSoftwareSolutions/renderx-host-sdk"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": false,
"exports": {
".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" },
"./core/conductor": { "types": "./dist/core/conductor/index.d.ts", "import": "./dist/core/conductor/index.js" },
"./core/conductor/conductor": { "types": "./dist/core/conductor/conductor.d.ts", "import": "./dist/core/conductor/conductor.js" },
"./core/conductor/sequence-registration": { "types": "./dist/core/conductor/sequence-registration.d.ts", "import": "./dist/core/conductor/sequence-registration.js" },
"./core/conductor/runtime-loaders": { "types": "./dist/core/conductor/runtime-loaders.d.ts", "import": "./dist/core/conductor/runtime-loaders.js" },
"./core/events/EventRouter": { "types": "./dist/core/events/EventRouter.d.ts", "import": "./dist/core/events/EventRouter.js" },
"./core/manifests/interactionManifest": { "types": "./dist/core/manifests/interactionManifest.d.ts", "import": "./dist/core/manifests/interactionManifest.js" },
"./core/manifests/topicsManifest": { "types": "./dist/core/manifests/topicsManifest.d.ts", "import": "./dist/core/manifests/topicsManifest.js" },
"./core/startup/startupValidation": { "types": "./dist/core/startup/startupValidation.d.ts", "import": "./dist/core/startup/startupValidation.js" },
"./core/environment/env": { "types": "./dist/core/environment/env.d.ts", "import": "./dist/core/environment/env.js" },
"./core/environment/feature-flags": { "types": "./dist/core/environment/feature-flags.d.ts", "import": "./dist/core/environment/feature-flags.js" },
"./core/*": { "types": "./dist/core/*/index.d.ts", "import": "./dist/core/*/index.js" }
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc --build",
"build:clean": "tsc --build --clean && tsc --build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "echo 'Linting passed - no linter configured yet'",
"type-check": "tsc --noEmit",
"clean": "rimraf dist",
"prepublishOnly": "npm run build && npm test",
"prepack": "npm run build"
},
"devDependencies": {
"@types/node": "^20.0.0",
"jsdom": "^25.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"musical-conductor": "*",
"react": ">=18"
}
}