plugin-inspector/package.json
Vincent Koc e7747f74ca
feat: add OpenClaw target surface parser
Add reusable OpenClaw target checkout parsing for compatibility records, hooks, registrars, SDK exports, and manifest type fields.
2026-04-26 20:46:04 -07:00

47 lines
1.1 KiB
JSON

{
"name": "@openclaw/plugin-inspector",
"version": "0.1.0",
"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",
"./capture-api": "./src/capture-api.js",
"./cold-import-readiness": "./src/cold-import-readiness.js",
"./contract-capture": "./src/contract-capture.js",
"./openclaw-target": "./src/openclaw-target.js",
"./platform-probes": "./src/platform-probes.js"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"check": "npm test && npm pack --dry-run",
"test": "node --test test/*.test.js"
},
"keywords": [
"openclaw",
"plugin",
"compatibility",
"ci"
]
}