clanker-agent/packages/pi-grind/package.json
Harivansh Rathi 48fa514e7e fix(companion-os): address grind mode review feedback
Restore the bedrock provider import through an explicit workspace path mapping, align pi-grind package metadata with the existing package manifests, remove the unused controller-failure state path, and parse bare ISO dates in local time.

Co-authored-by: Codex <noreply@openai.com>
2026-03-09 00:02:00 -07:00

35 lines
687 B
JSON

{
"name": "pi-grind",
"version": "0.1.0",
"description": "Explicit grind mode for pi with durable follow-up continuation in daemon mode",
"type": "module",
"keywords": [
"pi-package"
],
"license": "MIT",
"author": "Mario Zechner",
"main": "./src/index.ts",
"files": [
"src",
"test",
"package.json",
"README.md"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"peerDependencies": {
"@mariozechner/pi-agent-core": "*",
"@mariozechner/pi-coding-agent": "*"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"scripts": {
"test": "vitest --run"
}
}