New structure:
├── package.json # Root package
├── README.md # Documentation
├── plugin/ # OpenClaw plugin
│ ├── openclaw.plugin.json # Plugin manifest
│ ├── index.ts # Plugin entry (TypeScript)
│ ├── package.json
│ └── tsconfig.json
├── server/ # Telemetry sidecar
│ └── telemetry.mjs
├── skills/ # OpenClaw skills
└── scripts/
└── install.mjs # Installation script
Matches PaddedCell project structure.
Provides install.mjs with build/install/configure/uninstall commands.
16 lines
319 B
JSON
16 lines
319 B
JSON
{
|
|
"name": "harborforge-monitor-plugin",
|
|
"version": "0.1.0",
|
|
"description": "OpenClaw plugin for HarborForge Monitor",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|