Each plugin package invokes `tsc` in its build script but previously relied on a root-hoisted typescript. When the root symlink breaks (e.g. after switching worktrees that shared a pnpm store), `pnpm -r build` fails with MODULE_NOT_FOUND for tsc — blocking `pnpm dev dashboard`. Declaring typescript locally makes each plugin self-sufficient. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
32 lines
669 B
JSON
32 lines
669 B
JSON
{
|
|
"name": "@fusion-plugin-examples/hermes-runtime",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "Hermes AI runtime plugin for Fusion - provides AI agent execution runtime",
|
|
"keywords": [
|
|
"fusion-plugin",
|
|
"hermes",
|
|
"runtime",
|
|
"ai"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run --silent=passed-only --reporter=dot"
|
|
},
|
|
"dependencies": {
|
|
"@fusion/plugin-sdk": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.5.2",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|