mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* remove supabase package * upgrade valibot * removed supabase package Migration not complete yet * update submodule * fixed some supabase errors * Add new fields to extension models - Added `id` field to `ExtPublish` - Expanded `DBExtension` with multiple new properties: - `api_version`, `author_id`, `created_at`, - `downloads`, `icon`, `identifier`, - `long_description`, `name`, - `readme`, `short_description`, - and `tarball_size` * Refactor: clean up unused Supabase imports - Removed commented-out Supabase imports from various files to streamline the codebase. - Updated `created_at` type in `ExtPublish` model from `date` to `string` for consistency. * update icon enum to union * fix type errors after removing supabase * format * more types fixed * feat: enhance command handling and update SDK version
40 lines
816 B
JSON
40 lines
816 B
JSON
{
|
|
"name": "kksh",
|
|
"module": "dist/cli.js",
|
|
"version": "0.1.3",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|