40529c5991
Operating-numbers view plugin (MIQ-1734): per-agent load, in-flight per project, pending-decision age, 7-day throughput, and budget tile. Co-Authored-By: Paperclip <noreply@paperclip.ing>
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "@miq/stats-plugin",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"description": "Operating-numbers view: per-agent load, in-flight per project, pending-decision age, 7-day throughput, and budget summary.",
|
|
"scripts": {
|
|
"build": "node ./esbuild.config.mjs",
|
|
"build:rollup": "rollup -c",
|
|
"dev": "node ./esbuild.config.mjs --watch",
|
|
"dev:ui": "paperclip-plugin-dev-server --root . --ui-dir dist/ui --port 4179",
|
|
"test": "NODE_ENV=development vitest run --config ./vitest.config.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"paperclipPlugin": {
|
|
"manifest": "./dist/manifest.js",
|
|
"worker": "./dist/worker.js",
|
|
"ui": "./dist/ui/"
|
|
},
|
|
"keywords": [
|
|
"paperclip",
|
|
"plugin",
|
|
"ui",
|
|
"stats",
|
|
"operating-numbers"
|
|
],
|
|
"author": "MIQ",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@paperclipai/plugin-sdk": "file:.paperclip-sdk/paperclipai-plugin-sdk-1.0.0.tgz",
|
|
"@paperclipai/shared": "file:.paperclip-sdk/paperclipai-shared-0.3.1.tgz",
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@types/node": "^24.6.0",
|
|
"@types/react": "^19.0.8",
|
|
"@types/react-dom": "^19.2.3",
|
|
"esbuild": "^0.27.3",
|
|
"jsdom": "^29.1.1",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"rollup": "^4.38.0",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.0.5"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18"
|
|
}
|
|
}
|