Files
inkos/packages/cli/package.json
T

41 lines
1023 B
JSON

{
"name": "@actalk/inkos",
"version": "0.6.0",
"description": "InkOS CLI — multi-agent novel production system",
"type": "module",
"bin": {
"inkos": "dist/index.js"
},
"files": [
"dist",
"!dist/__tests__"
],
"license": "MIT",
"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:*",
"commander": "^13.0.0",
"dotenv": "^16.4.0",
"epub-gen-memory": "^1.0.10",
"marked": "^15.0.0"
},
"devDependencies": {
"typescript": "^5.8.0",
"vitest": "^3.0.0",
"@types/node": "^22.0.0"
}
}