kitchen-sink/package.json
Vincent Koc 02421e56a6
Some checks are pending
Check / check (push) Waiting to run
Check / clawhub-dry-run (push) Waiting to run
fix(security): override anthropic sdk patched version
2026-04-29 16:19:27 -07:00

80 lines
2.4 KiB
JSON

{
"name": "@openclaw/kitchen-sink",
"version": "0.2.2",
"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.27",
"pluginSdkVersion": "2026.4.27"
}
},
"scripts": {
"acceptance:install": "node scripts/check-installed-package.mjs",
"check": "npm run sync:surface -- --check && node scripts/check-sdk-surface.mjs && npm run check:runtime && npm run plugin:inspect && npm run check:install",
"check:install": "node scripts/check-installed-package.mjs",
"check:inspector": "npm run plugin:inspect && npm run plugin:inspect:runtime",
"check:runtime": "node scripts/check-kitchen-runtime.mjs && node scripts/check-kitchen-contract-probes.mjs",
"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.27"
},
"devDependencies": {
"@openclaw/plugin-inspector": "0.3.5"
},
"overrides": {
"@anthropic-ai/sdk": "0.91.1"
},
"engines": {
"node": ">=22"
}
}