ktx/packages/cli/package.json
2026-05-10 23:12:26 +02:00

72 lines
2.1 KiB
JSON

{
"name": "@klo/cli",
"version": "0.0.0-private",
"description": "CLI wrapper for klo context packages",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"bin": {
"klo": "./dist/bin.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"assets"
],
"scripts": {
"assets:demo": "node scripts/build-demo-assets.mjs",
"build": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.json && node ../../scripts/prepare-cli-bin.mjs",
"smoke": "vitest run src/standalone-smoke.test.ts src/example-smoke.test.ts --testTimeout 30000",
"test": "vitest run",
"type-check": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@clack/prompts": "1.3.0",
"@commander-js/extra-typings": "14.0.0",
"@klo/connector-bigquery": "workspace:*",
"@klo/connector-clickhouse": "workspace:*",
"@klo/connector-mysql": "workspace:*",
"@klo/connector-postgres": "workspace:*",
"@klo/connector-posthog": "workspace:*",
"@klo/connector-snowflake": "workspace:*",
"@klo/connector-sqlite": "workspace:*",
"@klo/connector-sqlserver": "workspace:*",
"@klo/context": "workspace:*",
"@klo/llm": "workspace:*",
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "14.0.3",
"ink": "^7.0.1",
"react": "^19.2.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.3.0",
"@types/react": "^19.2.14",
"better-sqlite3": "^12.6.2",
"ink-testing-library": "^4.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kaelio/ktx.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/kaelio/ktx/issues"
},
"homepage": "https://github.com/kaelio/ktx#readme"
}