Split Kitchen Sink into full, conformance, and adversarial test personalities with expected diagnostics metadata.
74 lines
2.2 KiB
JSON
74 lines
2.2 KiB
JSON
{
|
|
"name": "@openclaw/kitchen-sink",
|
|
"version": "0.2.1",
|
|
"private": false,
|
|
"description": "Credential-free kitchen-sink OpenClaw plugin fixture covering the public plugin API surface.",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/openclaw/kitchen-sink.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/openclaw/kitchen-sink/issues"
|
|
},
|
|
"homepage": "https://github.com/openclaw/kitchen-sink#readme",
|
|
"keywords": [
|
|
"openclaw",
|
|
"openclaw-plugin",
|
|
"crabpot",
|
|
"plugin-inspector"
|
|
],
|
|
"files": [
|
|
"src/",
|
|
"openclaw.plugin.json",
|
|
"plugin-inspector.config.json",
|
|
"README.md"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.js",
|
|
"./personality": "./src/personality.js",
|
|
"./runtime": "./src/kitchen-runtime.js",
|
|
"./scenarios": "./src/scenarios.js",
|
|
"./setup": "./src/setup.js"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./src/index.js"
|
|
],
|
|
"runtimeExtensions": [
|
|
"./src/index.js"
|
|
],
|
|
"setupEntry": "./src/setup.js",
|
|
"compat": {
|
|
"pluginApi": "2026.4"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.4.26",
|
|
"pluginSdkVersion": "2026.4.26"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"acceptance:install": "node scripts/check-installed-package.mjs",
|
|
"check": "npm run sync:surface -- --check && node scripts/check-sdk-surface.mjs && node scripts/check-kitchen-runtime.mjs && node scripts/check-kitchen-contract-probes.mjs && npm run plugin:inspect && npm run acceptance:install",
|
|
"pack:check": "node scripts/check-pack-payload.mjs",
|
|
"plugin:inspect": "plugin-inspector check --config plugin-inspector.config.json --no-openclaw",
|
|
"plugin:inspect:runtime": "PLUGIN_INSPECTOR_EXECUTE_ISOLATED=1 plugin-inspector check --config plugin-inspector.config.json --no-openclaw --runtime --mock-sdk",
|
|
"sdk:target-check": "node scripts/check-target-sdk-imports.mjs",
|
|
"sync:surface": "node scripts/sync-surface.mjs",
|
|
"test": "npm run check"
|
|
},
|
|
"dependencies": {
|
|
"openclaw": "2026.4.26"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-inspector": "0.3.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
}
|
|
}
|