mirror of
https://github.com/Narcooo/inkos
synced 2026-04-21 14:37:16 +00:00
Users on slow npm mirrors (taobao/cnpm/etc.) hit
'No matching version found for @mariozechner/pi-ai@^0.67.4' when
running 'npm install -g @actalk/inkos@latest'. The caret range in
inkos-core ('^0.67.1') resolves to pi-agent-core@0.67.4, whose own
package.json tightens pi-ai to '^0.67.4'. If the mirror has not yet
synced pi-ai@0.67.4, the install breaks.
Add npm 'overrides' to packages/cli/package.json (the published root)
and pnpm.overrides to the workspace root so both end-user installs
and local dev pin to a known-good version. Bumping pi-mono now
becomes a deliberate edit rather than an automatic, mirror-dependent
upgrade.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "inkos",
|
|
"version": "1.3.3",
|
|
"private": true,
|
|
"description": "Autonomous AI novel writing CLI agent — 10-agent pipeline that writes, audits, and revises novels with continuity tracking",
|
|
"keywords": [
|
|
"ai-novel-writing",
|
|
"ai-writing-agent",
|
|
"novel-generator",
|
|
"autonomous-writing",
|
|
"litrpg",
|
|
"progression-fantasy",
|
|
"multi-agent",
|
|
"creative-writing-ai",
|
|
"openclaw-skill",
|
|
"cli"
|
|
],
|
|
"license": "AGPL-3.0-only",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Narcooo/inkos"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm -r build",
|
|
"dev": "pnpm -r --parallel dev",
|
|
"test": "pnpm -r test",
|
|
"lint": "pnpm -r lint",
|
|
"typecheck": "pnpm -r typecheck",
|
|
"verify:publish-manifests": "node scripts/verify-no-workspace-protocol.mjs packages/core packages/cli packages/studio",
|
|
"release": "pnpm build && pnpm test"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"pnpm": ">=9.0.0"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"@mariozechner/pi-ai": "0.67.1",
|
|
"@mariozechner/pi-agent-core": "0.67.1"
|
|
}
|
|
}
|
|
}
|