kunkun/apps/cli/package.json
Huakun Shen 490368428e
UI (#94)
* feat: add publisher link to extension detail

* fix: improve IconMultiplexer and StoreExtDetail component rendering

* feat: add published date to extension details view

* chore: add moment.js and clean up imports in StoreExtDetail

* fix: support cloudflare worker

Otherwise cloudflare worker gets html instead of json

* refactor: move AppsCmds component to desktop app

* bump: version to 0.1.1

* fix: package.json fetching cors error

* fix: improve files field validation in verify command
2025-02-07 01:26:56 -05:00

40 lines
824 B
JSON

{
"name": "kksh",
"module": "dist/cli.js",
"version": "0.1.0",
"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"
]
}