68 lines
2.2 KiB
JSON
68 lines
2.2 KiB
JSON
{
|
|
"name": "@openclaw/plugin-inspector",
|
|
"version": "0.3.5",
|
|
"private": false,
|
|
"description": "Offline compatibility inspector for OpenClaw plugins.",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"author": "OpenClaw",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/openclaw/plugin-inspector.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/openclaw/plugin-inspector/issues"
|
|
},
|
|
"homepage": "https://github.com/openclaw/plugin-inspector#readme",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"bin": {
|
|
"plugin-inspector": "src/cli.js"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.js",
|
|
"./advanced": "./src/advanced.js",
|
|
"./capture-api": "./src/capture-api.js",
|
|
"./ci-policy": "./src/ci-policy.js",
|
|
"./cold-import-readiness": "./src/cold-import-readiness.js",
|
|
"./contract-capture": "./src/contract-capture.js",
|
|
"./contract-coverage": "./src/contract-coverage.js",
|
|
"./execution-results": "./src/execution-results.js",
|
|
"./import-loop-profile": "./src/import-loop-profile.js",
|
|
"./openclaw-target": "./src/openclaw-target.js",
|
|
"./platform-probes": "./src/platform-probes.js",
|
|
"./profile-diff": "./src/profile-diff.js",
|
|
"./ref-diff": "./src/ref-diff.js",
|
|
"./runtime-capture-report": "./src/runtime-capture-report.js",
|
|
"./runtime-profile": "./src/runtime-profile.js",
|
|
"./synthetic-probe-suite": "./src/synthetic-probe-suite.js",
|
|
"./synthetic-probes": "./src/synthetic-probes.js",
|
|
"./workspace-plan": "./src/workspace-plan.js"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"examples",
|
|
"docs/plugin-inspector-banner.jpg",
|
|
"README.md",
|
|
"CHANGELOG.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"check": "npm test && npm run release:contents",
|
|
"release:crabpot": "node scripts/check-crabpot-followthrough.mjs",
|
|
"release:contents": "node scripts/check-package-contents.mjs",
|
|
"release:plan": "node scripts/release-plan.mjs",
|
|
"release:readiness": "npm run release:local && npm run release:crabpot",
|
|
"release:local": "npm run check",
|
|
"release:notes": "node scripts/release-notes.mjs --unreleased",
|
|
"test": "node --test test/*.test.js"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"plugin",
|
|
"compatibility",
|
|
"ci"
|
|
]
|
|
}
|