mirror of
https://github.com/gianfrancopiana/openclaw-autoresearch.git
synced 2026-08-14 08:52:44 +00:00
96 lines
2.5 KiB
JSON
96 lines
2.5 KiB
JSON
{
|
|
"name": "@gianfrancopiana/openclaw-autoresearch",
|
|
"version": "1.0.11",
|
|
"description": "Faithful OpenClaw port of pi-autoresearch.",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "node ./scripts/clean-dist.mjs && tsc -p tsconfig.build.json",
|
|
"check:release-metadata": "node ./scripts/release-metadata.mjs",
|
|
"sync:release-metadata": "node ./scripts/release-metadata.mjs --write",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"test": "vitest run",
|
|
"validate": "npm run check:release-metadata && npm run typecheck && npm run test",
|
|
"release:verify": "npm run validate && npm run build && npm pack --dry-run",
|
|
"release:check-tag": "node ./scripts/check-release-tag.mjs",
|
|
"release:prepare": "node ./scripts/prepare-release.mjs",
|
|
"prepack": "npm run build",
|
|
"prepublishOnly": "npm run release:verify",
|
|
"smoke:openclaw-host": "node ./scripts/smoke-openclaw-host.mjs",
|
|
"smoke:registry-openclaw-host": "node ./scripts/smoke-openclaw-registry.mjs"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"openclaw-plugin",
|
|
"autoresearch",
|
|
"benchmarking",
|
|
"optimization",
|
|
"experimentation"
|
|
],
|
|
"files": [
|
|
"dist/",
|
|
"index.ts",
|
|
"extensions/openclaw-autoresearch/**/*.ts",
|
|
"openclaw.plugin.json",
|
|
"skills/",
|
|
"docs/",
|
|
"README.md",
|
|
"RELEASING.md",
|
|
"LICENSE"
|
|
],
|
|
"license": "MIT",
|
|
"author": "Gianfranco Piana",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/gianfrancopiana/openclaw-autoresearch.git"
|
|
},
|
|
"homepage": "https://github.com/gianfrancopiana/openclaw-autoresearch#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/gianfrancopiana/openclaw-autoresearch/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.5.2",
|
|
"typescript": "5.9.2",
|
|
"vitest": "3.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@sinclair/typebox": "0.34.48"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.4.24"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"runtimeExtensions": [
|
|
"./dist/index.js"
|
|
],
|
|
"install": {
|
|
"minHostVersion": ">=2026.4.24"
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.4.24"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.4.24"
|
|
}
|
|
}
|
|
}
|