{ "name": "@dorfteich/plugin-sdk", "version": "0.0.0", "private": true, "description": "Plugin contract: manifest schema, capability names, and the postMessage RPC protocol shared by the host app and plugin bundles (ADR 0008)", "license": "MIT", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist" ], "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts --clean", "typecheck": "tsc --noEmit", "test": "vitest run --passWithNoTests" }, "dependencies": { "zod": "^3.24.0" }, "devDependencies": { "@types/node": "^26.1.0", "jsdom": "^26.0.0", "tsup": "^8.3.0", "vitest": "^3.0.0" } }