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>
69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "@actalk/inkos",
|
|
"version": "1.3.3",
|
|
"description": "Autonomous AI novel writing CLI agent — 10-agent pipeline that writes, audits, and revises novels with continuity tracking. Supports LitRPG, Progression Fantasy, Isekai, Romantasy, Sci-Fi and more.",
|
|
"keywords": [
|
|
"ai-novel-writing",
|
|
"ai-writing-agent",
|
|
"novel-generator",
|
|
"autonomous-writing",
|
|
"litrpg",
|
|
"progression-fantasy",
|
|
"ai-fiction",
|
|
"multi-agent",
|
|
"creative-writing-ai",
|
|
"novel-writing-tool",
|
|
"ai-storytelling",
|
|
"openclaw-skill",
|
|
"cli",
|
|
"epub",
|
|
"continuity-tracking"
|
|
],
|
|
"type": "module",
|
|
"bin": {
|
|
"inkos": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/__tests__"
|
|
],
|
|
"license": "AGPL-3.0-only",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Narcooo/inkos.git",
|
|
"directory": "packages/cli"
|
|
},
|
|
"scripts": {
|
|
"prepack": "node ../../scripts/prepare-package-for-publish.mjs",
|
|
"postpack": "node ../../scripts/restore-package-json.mjs",
|
|
"prepublishOnly": "node ../../scripts/verify-no-workspace-protocol.mjs .",
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest run --passWithNoTests",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@actalk/inkos-core": "workspace:*",
|
|
"@actalk/inkos-studio": "workspace:*",
|
|
"commander": "^13.0.0",
|
|
"dotenv": "^16.4.0",
|
|
"epub-gen-memory": "^1.0.10",
|
|
"ink": "^7.0.0",
|
|
"ink-text-input": "^6.0.0",
|
|
"marked": "^15.0.12",
|
|
"marked-terminal": "^7.3.0",
|
|
"react": "^19.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/marked-terminal": "^6.1.1",
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.2.14",
|
|
"ink-testing-library": "^4.0.0",
|
|
"typescript": "^5.8.0",
|
|
"vitest": "^3.0.0"
|
|
},
|
|
"overrides": {
|
|
"@mariozechner/pi-ai": "0.67.1",
|
|
"@mariozechner/pi-agent-core": "0.67.1"
|
|
}
|
|
}
|