kunkun/apps/cli/package.json
Huakun Shen 7b6c0934ab
Feature: add helper api (#95)
* feat: add helper API for installation guides and update UI components

- Implement helperAPI with methods to navigate to installation guides for Deno, FFmpeg, and Homebrew
- Update extension and help page components to use new helper API
- Modify command filtering in builtin commands
- Adjust page navigation in help pages to use goHome instead of goBack
- Remove unused imports and clean up components

* chore: bump @kksh/api to 0.1.2 and update dependent packages
2025-02-07 02:41:50 -05:00

40 lines
824 B
JSON

{
"name": "kksh",
"module": "dist/cli.js",
"version": "0.1.1",
"type": "module",
"bin": {
"kksh": "./dist/cli.js",
"docker-entrypoint.sh": "./dist/docker/entrypoint.sh"
},
"author": "Huakun",
"scripts": {
"build": "bun build.ts",
"test": "cross-env NODE_ENV=test bun test --coverage",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"cross-env": "^7.0.3"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"dependencies": {
"@inquirer/prompts": "^7.2.1",
"@kksh/api": "workspace:*",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"console-table-printer": "^2.12.1",
"debug": "^4.4.0",
"fs-extra": "^11.2.0",
"inquirer": "^10.1.2",
"valibot": "^1.0.0-beta.10"
},
"files": [
"dist"
]
}